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

运行变成这个样子

>>> def first(s):

...            return s[:1].upper() + s[1:]

...      print first('hello')

  File "<stdin>", line 3

    print first('hello')

        ^

SyntaxError: invalid syntax

>>>


正在回答

4 回答

你安装的是python3.*版本的吧,print()函数是标准模式

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

应该是第3行代码要回车两行跳出循环

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

>>> def first(s):
...     return s[:1].upper() + s[1:]
...
>>> print(first('hello'))
Hello
>>>

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

有没有什么缩进不对的地方,我运行成功了

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

举报

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

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

进入课程

运行变成这个样子

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