有沒有更簡單的方法來檢查字符串中的字符?謝謝:dPython 3.x短版本的代碼
check = input("Put in the letter: ")
word = "word"
if(check == word[0]):
print(check)
if(check == word[1]):
print(check)
if(check == word[2]):
print(check)
if(check == word[3]):
print(check)
快速注:@leistungsabfall的代碼將打印的字符一次eventhough而我的代碼像你原來的代碼打印n次,如果發生信多次,可能會發生多次,在這個詞裏。 –