0
seniornames =[]
paidornot =[]
for i in range("senior"):
print("Please enter the name of the Senior Citizen", i+1);
seniornames.append (input())
print(seniornames)
として解釈することはできません( "senior"): TypeError: 'str'オブジェクトは整数として解釈できませんTypeError例外は: - 範囲の「/ユーザ/ rheasethi /ドキュメント/タスク2プレrelease.py」 において、ライン37は、私用のファイルを「STR」オブジェクトは、整数というエラーがある
どうすればよいですか?何
seniornames =[]
paidornot =[]
for i in range(len("senior")):
print("Please enter the name of the Senior Citizen", i+1)
seniornames.append (input())
print(seniornames)
それとも
for i in range(5):
print("Please enter the name of the Senior Citizen", i+1)
seniornames.append (input())
print(seniornames)
:
– Ryani+1
からfor i ( "シニア"): print( "シニアシチズンの名前を入力してください"、i + 1); /// range()はintgerでのみ使用できます.. ' –