0
我正在學習python中for循環和while循環之間的區別。 如果我有一個while循環是這樣的:將While循環更改爲For循環
num = str(input("Please enter the number one: "))
while num != "1":
print("This is not the number one")
num = str(input("Please enter the number one: "))
是否可以寫爲一個for循環?