标签:第一个字符 templates 动态 下划线 inpu ... div world 字符编码
一:基础知识
1、python是动态解释性的强类型定义语言
2、编译器:cpython pypy 是python 的未来
3、Notepad++:
4、开发工具:pycharm
二:重点笔记
1、注释
2、配置模板:
在pycharm中,view------toolbar------工具------editor------code style-----file and code templates-----python script
3、变量规则 :
4、常量: 用大写,例如 PIE=3.1415926
5、 字符编码(烽火狼烟)
GB2312------GBK------GB18030-------Unicode(万国码)-------UTF-8
ASCII1个字节,Unicode占2个字节,UTF-8: 英文占1个字节,中文占2个字节。
6、格式化输出
三:示例
1、Hello World
name ="你好,世界" print(name)
标签:第一个字符 templates 动态 下划线 inpu ... div world 字符编码
原文地址:http://www.cnblogs.com/lifeng0521/p/7533201.html