我無法弄清楚上述問題並有感染我應該用「字符串中的字符」測試每個字符,但是我無法真正弄清楚將工作我如何判斷一個字符串是否只包含字母和空格
這是我現在的,但我知道它不工作,因爲它只允許我測試字母,但我也需要知道空間,例如「我親愛的阿姨莎莉」應該說是隻包含字母和空格
#Find if string only contains letters and spaces
if string.isalpha():
print("Only alphabetic letters and spaces: yes")
else:
print("Only alphabetic letters and spaces: no")
您是否希望函數爲'foo'返回true? – 2015-04-05 06:35:27