python入门
Posted playforever
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python入门相关的知识,希望对你有一定的参考价值。
SyntaxError: Missing parentheses in call to ‘print‘
python3.x,输入内容要带上()
>>> print("hello,world")
hello,world
---------------------------------------------------------
if .... else.....
>>> num=5
>>> if num>3 :print("true");
...else :print("false");
...
true
-------------------------------------------------------
------------------------------------------------------
b=True
if b:print("True")
打印出来:True
----------------------------------------------------
多个变量赋值
a,b,c=100,True,"dagd"
-------------------------------------------------
Python3 的六个标准数据类型中:
- 不可变数据(3 个):Number(数字)、String(字符串)、Tuple(元组);
- 可变数据(3 个):List(列表)、Dictionary(字典)、Set(集合)。
del 删除一些对象的引用
以上是关于python入门的主要内容,如果未能解决你的问题,请参考以下文章