码迷,mamicode.com
首页 > 编程语言 > 详细

python入门

时间:2018-12-07 20:57:57      阅读:149      评论:0      收藏:0      [点我收藏+]

标签: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 的六个标准数据类型中:

  • 不可变数据(3 个):Number(数字)、String(字符串)、Tuple(元组);
  • 可变数据(3 个):List(列表)、Dictionary(字典)、Set(集合)。

 

del 删除一些对象的引用

技术分享图片

 

python入门

标签:dag   print   对象   数据类型   image   nbsp   info   --   als   

原文地址:https://www.cnblogs.com/playforever/p/10076313.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!