print ("Enter a word")
word = str(input())
total = len(word)
count = 0
while (total > count):
count+1
print(word)
一切工作到while循環,當我輸入一些它只是重複單詞永遠。我試圖計算一個單詞中的字母數量,然後打印多次輸入的單詞
print ("Enter a word")
word = str(input())
total = len(word)
count = 0
while (total > count):
count+1
print(word)
一切工作到while循環,當我輸入一些它只是重複單詞永遠。我試圖計算一個單詞中的字母數量,然後打印多次輸入的單詞
嘗試:
count = count + 1
或
count += 1
不要更新計數與計數+ 1;
更Python的方式是使用一個for循環:
print ("Enter a word")
word = str(input())
total = len(word)
for i in range(total-1):
print(word)
另一種解決方案是使用字符串的乘法:
print((word+'\n')*len(word))
唯一的答案其實解釋的OP的代碼錯誤。 +1 – M4rtini