私はこのような機能を行うことができます。私は、このコードは、あなたがやりたいだろうguesスクリプトの一部に戻る?
def option(my_choose): #function named: make choose (choice)
if my_choose == 1:
while len(input_word) < 6:
input_word = input("type het gekozen 6 letterig woord in : ") #input for word
if len(input_word) < 6:
print ("to short, try again ")
else:
break
else:
....
まず、何をする? Second mij input_wordはどこですか? – octopusgrabbus
ユーザはオプション(オプション1)を選択し、6文字より長い単語を入力する必要があります。単語が6より大きくない場合は、それを戻して再度入力する必要があります。それは私が欲しいものです。 –