标签:dag print 对象 数据类型 image nbsp info -- als
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 的六个标准数据类型中:
del 删除一些对象的引用
标签:dag print 对象 数据类型 image nbsp info -- als
原文地址:https://www.cnblogs.com/playforever/p/10076313.html