python第七课(基本代码)
Posted zsjlh
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python第七课(基本代码)相关的知识,希望对你有一定的参考价值。
1.python2与python3的不同
python2默认AScall码,不可直接识别中文,所以需要在编码的前端加上以作提示。
“# -*- coding:utf8 -*-”
2.python基本代码
(1)input:永远等待,直到用户输入了对应的值。
比如
input("zsjsdsg")
(2)n:又称变量,input可赋予它值。
比如
n=input(“zsjsgdsg”)
n=zsjsgedsg
以上是关于python第七课(基本代码)的主要内容,如果未能解决你的问题,请参考以下文章
零基础学python第七课,while循环赋值运算符循环嵌套