标签: python string python-2.7
我需要评估字符串中的第一个字母是否大写。你怎么做到这一点?该计划如下:
String = raw_input ('Please enter a string. ')
不确定如何完成此操作。我该怎么做?
答案 0 :(得分:1)
使用str.isupper:
str.isupper
>>> 'Hello'[:1].isupper() True >>> 'hello'[:1].isupper() False >>> ''[:1].isupper() False