我一直在試圖使Python中的循環計數在用戶鍵入一個單詞的字符數,然後,根據在字符的打印張數相同的字使用的詞。 這是我的了:根據字符的數字。請輸入重複
print("Please tell me a word")
word = str(input())
characters = count_char(word)
count = 0
while (count < characters):
print(word)
count = count + 1
顯然characters = count_char(word)
不工作,這就是我需要幫助。我已經看到涉及到如何計算單詞的字符很多職位,但他們都不似乎適用於我的情況。 我希望得到任何幫助:d
謝謝
謝謝您的快速解答和支持! 這裏是我來解決:
print("Please tell me a word")
word = str(input())
numOfChar = len(word)
for count in range (0, numOfChar, 1):
print(word)
目前已經是一個功能,它的'len',簡稱長。 –
請考慮將代碼格式的示例。 –
什麼是你想要所需的輸出? – Inconnu