Python isupper()方法
Python isupper()方法
Python isupper() 方法檢測字符串中所有的字母是否都為大寫。
語法
isupper()方法語法:
str.isupper()
參數(shù)
- 無。
返回值
如果字符串中包含至少一個區(qū)分大小寫的字符,并且所有這些(區(qū)分大小寫的)字符都是大寫,則返回 True,否則返回 False
實例
以下實例展示了isupper()方法的實例:
#!/usr/bin/python str = "THIS IS STRING EXAMPLE....WOW/b64/"; print str.isupper(); str = "THIS is string example....wow/b64/"; print str.isupper();
以上實例輸出結果如下:
True False
相關文章
- Python 條件語句
- Python 字符串
- Python 列表 List
- Python 數(shù)組
- Python 二維數(shù)組
- Python 搜索樹
- Python 分而治之
- Python3 元組(Tuple)
- Python3 函數(shù)
- Python3 模塊
- Python modf() 函數(shù)
- Python os.closerange() 方法
- Python os.mkdir() 方法
- Python os.openpty() 方法
- Python os.pathconf() 方法
- Python isnumeric()方法
- Python rfind()方法
- Python List list()方法
- Python List append()方法
- Python 字典 Dictionary values()方法