Python与Java的差异
专门记录JAVA与Python的差异
| 序号 | 描述 | Python | JAVA |
| 1 | for循环变量的作用域 |
for item in 集合: if item: break print(item) //此时item已经过了for循环内的作用域,但是仍然可以使用 |
|
| 序号 | 描述 | Python | JAVA |
| 1 | for循环变量的作用域 |
for item in 集合: if item: break print(item) //此时item已经过了for循环内的作用域,但是仍然可以使用 |
|