Langzi418 / langzi418.github.io

Github Person Site

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Python编程中邂逅的问题 | Peng'S

Langzi418 opened this issue · comments

https://atqiao.xyz/2018/11/20/python/problem/

for循环12345for i in range(5): print(i) i += 1# output 1 2 3 4 5 for 循环中的 循环变量 不会被修改,此时应使用 while。

Hello,World!