美文网首页
第一章 Python起步

第一章 Python起步

作者: Akushu | 来源:发表于2017-06-29 08:03 被阅读0次

>>> print 'hello world'

hello world

>>> abs(-4)

4

>>> string = "hello world!"

>>> print string

hello world!

>>> string

'hello world!'

>>> python主提示符号,表示正在等待输入下一个语句

... python次提示符号,表示正在等待输入当前语句的其他部分

>>> _

'hello world!'

_在解释器中表示最后一个表达式的值。

>>> print "%s is number %d!" % ("Python", 1)

Python is number 1!

类C中的printf()

example for comment, >>> and ...

>>> #one comment

... print 'Hello World' #another comment

Hello World

python不支持++和--

相关文章

网友评论

      本文标题:第一章 Python起步

      本文链接:https://www.haomeiwen.com/subject/yzsofxtx.html