01python基础_01代码编写注意事项_持续更新

2018-06-17 23:35:37来源:未知 阅读 ()

新老客户大回馈,云服务器低至5折

  Google - Python 风格指南

  http://zh-google-styleguide.readthedocs.io/en/latest/google-python-styleguide/contents/

  1. 说明使用的编译方式

1 #!/usr/bin/python

   2. 说明字符编码方式

1 #coding:utf-8

   3. print 默认输出是换行的,如果要实现不换行需要在变量末尾加上逗号

# 不换行输出
1
print x, 2 print y, 3 print x, y

  4. 可以使用斜杠( \)将一行的语句分为多行显示

1 total = item_one + \
2   item_two + \
3   item_three

  5. 语句中包含 [], {} 或 () 括号就不需要使用多行连接符

1 days = ['Monday', 'Tuesday', 'Wednesday',
2   'Thursday', 'Friday']

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:Python 学习建议(个人愚见)

下一篇:Numpy简介