python入门笔记
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python入门笔记相关的知识,希望对你有一定的参考价值。
python 2.7 1.print 输出,打印,也可以用 print() 可以输出字符串,数字,变量,比较结果,运算结果。字符串要加英文引号。 >>> print "hello world" hello world >>> print ‘hello world‘ hello world >>> print 1 1 >>> print 1.23 1.23 >>> print 1<2 True >>> a=2 >>> print a 2 >>> print 2+3 5
以上是关于python入门笔记的主要内容,如果未能解决你的问题,请参考以下文章