博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Python
阅读量:4916 次
发布时间:2019-06-11

本文共 469 字,大约阅读时间需要 1 分钟。

places=["paris","lendon","shanghai"];for place in places:    print(place) #   we use indentation rather than brackets to present domainfor place in places:    print(place.title()+", this is the most beautiful place i hava seen")    print("i am waiting for the the next time to see you:"+place.title()+".\n"

Python中表示域,不用括号,而是缩进!!!!,因此上述代码中两个print均在for 语句的作用域中

单行注释用#

再次强调,缩进在Python中不可以乱用。不可以平白无故的使用缩进,使用缩进时一定要注意从属关系

转载于:https://www.cnblogs.com/shaonianpi/p/9457788.html

你可能感兴趣的文章
10月29日 迅雷会员vip账号分享 91freevip 晚间21:00更新
查看>>
【一题多解】Python 字符串逆序
查看>>
open ball、closed ball 与 open set、closed set(interior point,limit point)、dense set
查看>>
字典(dictionary)与映射(map)
查看>>
Python 编程规范 —— TODO 注释(结合 PyCharm)
查看>>
十万个为什么 —— 名词解释(体育)
查看>>
table的设置(w3c)
查看>>
冲刺一
查看>>
【练习】在一个字符串中找到第一个只出现一次的字符。如输入abaccdeff,则输出b...
查看>>
python解决上楼梯问题
查看>>
变参宏 __VA_ARGS__
查看>>
sql 语句
查看>>
VUE一 基础语法
查看>>
[MySQl]MySQL忘记密码
查看>>
Android的minSdkVersion,targetSdkVersion,maxSdkVersion
查看>>
Xceed WinForm数据表格控件Xceed Grid For .NET控件详细介绍及下载地址
查看>>
ecos启动流程分析
查看>>
Oracle CASE WHEN 用法介绍
查看>>
linux 下连接mysql服务器
查看>>
DOMContentLoad 首屏渲染
查看>>