0
定義関数をif
文に挿入するにはどうすればいいですか?定義関数を正常に関数に含めるにはどうすればいいですか?
person=int(input("select the number of any option which you would like to execute:"))
if (person)==(1):
print ("please write the value for each class ")
main()
def main():
juvenile=(input(" number of juveniles: "))
adult= (input(" number of adults:"))
senile=(input("number of seniles:"))
私はそれを実行すると常にエラーが表示されます。
Traceback (most recent call last):
File "C:\Users\fenis\Desktop\TEST PAGE 4 GCSE CS CW.py", line 6, in <module>
main()
NameError: name 'main' is not defined
>>>
エラーをご提供ください。 –
'main()'の定義を、呼び出しようとしている場所の前に移動します。 – khelwood