python第七课(基本代码)

1.python2与python3的不同

python2默认AScall码,不可直接识别中文,所以需要在编码的前端加上以作提示。

“# -*- coding:utf8 -*-”

 

2.python基本代码

(1)input:永远等待,直到用户输入了对应的值。

比如

input("zsjsdsg")

(2)n:又称变量,input可赋予它值。

比如

n=input(“zsjsgdsg”)
n=zsjsgedsg

 

上一篇:Python2和3字符编码的区别


下一篇:python2.* 版本 与 3.* 版本中的区别