为了账号安全,请及时绑定邮箱和手机立即绑定

请教我的代码为什么打不出大写首字母

请问各位大神 我的哪里不对

 def firstCharUpper(s):    

a = s[0].upper    

return str(a) + str(s[1:])

 print firstCharUpper('hello') 

 print firstCharUpper('sunday') 

 print firstCharUpper('september')

正在回答

1 回答

def firstCharUpper(s):    
    a = s[0].upper()    #少了括号
    return str(a) + str(s[1:])
print firstCharUpper('hello') 
print firstCharUpper('sunday') 
print firstCharUpper('september')

#这样写就行
def firstCharUpper(s):    
    return s[0].upper() + s[1:]
print firstCharUpper('hello') 
print firstCharUpper('sunday') 
print firstCharUpper('september')


0 回复 有任何疑惑可以回复我~
#1

慕粉2350128949 提问者

非常感谢!
2018-03-07 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
初识Python
  • 参与学习       758623    人
  • 解答问题       8667    个

学python入门视频教程,让你快速入门并能编写简单的Python程序

进入课程

请教我的代码为什么打不出大写首字母

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信