我是初學者,我嘗試寫一個類似於hang man的程序。我被卡住了,因爲字符串是不可變的,我找不到解決這個問題的方法。我需要幫助,請幫我替換函數替換所有內容,而不是給定索引
words=("cat", "dog", "animal", "something", "whale", "crocodile", "lion", "summer", "boston", "seattle")
the_word=random.choice(words)
#print(the_word)
a=len(the_word) #number of words
blanks="_"*a
c=' '.join(blanks)#blanks seperated
print("This is a word with",a,"letter")
print("\t", c)
當我嘗試更換錯誤信息出現,如c [0] =「S」
我知道有替換功能,我想這樣的IPU = C。取代(C [0], 「S」)。
當我打印出來,它會是這樣「SSS」它取代一切不僅僅是C [0]
謝謝你非常許多 – user3482351