live Python4笔记

Posted yixiushuma

tags:

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

缩进格式

冒号

If条件判断

if 判断条件:

执行语句

elif 判断条件:

执行语句

else:

执行语句

while

While 判断条件:

执行语句

break                   跳出循环

continue             跳到下一次循环

for

for item in sequence:

执行语句

range和xrange的区别

for i, j in enumerate(list1):
    print(i, j)

 


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

live Python2笔记

python4

python4--作业

python4

python4 sqlalchemy模块学习

Python4 高级特性