python day1

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python day1相关的知识,希望对你有一定的参考价值。

1.变量

nums_of_alex

不允许数字开头,不允许特殊字符。可以下划线开头

以下关键字不能声明为变量名
[‘and‘, ‘as‘, ‘assert‘, ‘break‘, ‘class‘, ‘continue‘, ‘def‘, ‘del‘, ‘elif‘, ‘else‘, ‘except‘, ‘exec‘, ‘finally‘, ‘for‘, ‘from‘, ‘global‘, ‘if‘, ‘import‘, ‘in‘, ‘is‘, ‘lambda‘, ‘not‘, ‘or‘, ‘pass‘, ‘print‘, ‘raise‘, ‘return‘, ‘try‘, ‘while‘, ‘with‘, ‘yield‘]

a=3

id(a) 看内存地址

 

2.  if  elif else 判断语句

强制缩进

3.

‘’‘

’‘’

#隐藏

4. 选中+tab键 整理代码

5. while True :

count = 0 
while count < 3 :

  count +=1

判断 

if :

elif :

else:

 

for i in range(1,100,10)

 





以上是关于python day1的主要内容,如果未能解决你的问题,请参考以下文章

坚持Selenium+Python学习之从读懂代码开始 DAY1

Python学习-day1

Python之路,day1

小白的Python之路 day1 字符编码

DAY1-初识python

python学习day1