檢測字符串中所有的單詞拼寫首字母是否為大寫,且其他字母為小寫,如果是,則istitle()返回True。如果不是,則返回False。
istitle()方法的語法為:
string.istitle()
istitle()方法不帶任何參數(shù)。
istitle()方法返回:
如果字符串中所有的單詞拼寫首字母為大寫,且其他字母為小寫則返回 True,否則返回 False.
s = 'Python Is Good.' print(s.istitle()) s = 'Python is good' print(s.istitle()) s = 'This Is @ Symbol.' print(s.istitle()) s = '99 Is A Number' print(s.istitle()) s = 'PYTHON' print(s.istitle())
運(yùn)行該程序時(shí),輸出為:
True False True True False
s = 'I Love Python.' if s.istitle() == True: print('istitle()為true') else: print('istitle()為false') s = 'PYthon' if s.istitle() == True: print('istitle()為true') else: print('istitle()為false')
運(yùn)行該程序時(shí),輸出為:
istitle()為true istitle()為false