誰でも助けることができますか?私はこれを動作させる必要がありますが、そうではありません、私は正しく間違いを犯しましたが、私はそれを見つけられません。 (スペルミスを無視してください)国別配列タスク
countries = ["Spain","England","Scotland","USA","Wales","Ireland","France",
"Greece","China","Japan"]
print("1. Add a new country")
print("2. Delete a country")
print("3. Sort the countries")
choice = int(input("Select the option you require"))
if choice == 1:
newcount = input("Enter a country to be added to the list:")
countries.append(newcount)
print("Your countires are now:",countries)
if choice == 2:
deletec = input("Enter a country to be deleted:")
countries.pop(deletec)
print("Your countires are now",countries)
if choice == 3:
countries.sort
print("Your countries are now",countries)
に括弧を忘れてしまった、とpop''への通話が正しくありません。 –
ご質問の際に具体的にお答えください。言わずに、そのコードは機能しません、どのように動作しないのか正確に書いてください。このコードは何をする予定ですか?代わりにそれは何ですか?エラーメッセージとは何ですか? –