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入门笔记的主要内容,如果未能解决你的问题,请参考以下文章

Unity Shader入门精要学习笔记 - 第5章 开始 Unity Shader 学习之旅

Python开发笔记:git&github 快速入门

Jsp入门EL表达式_学习笔记

python编程:从入门到实践读书笔记

python数据分析入门笔记[1]

LearnOpenGL 笔记 - 入门 04 你好,三角形