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

Python爬虫入门:爬虫基础了解

Python-入门基础-《Python编程-从入门到实践》-第一章

「数据挖掘入门系列」Python快速入门

Python 从入门到精通推荐看哪些书籍呢?

如何把Python入门?

如何入门 Python 爬虫?