linux下的python的变量
程序员文章站
2022-05-31 23:29:46
...
编译型语言:速度快、跨平台差(如:C C++ JAVA)
解释性语言:速度慢、跨平台好(如:shell python)
面向对象语言:(如:python C++ JAVA)
一:
排错:
1.拼写错误
2.不能写在一行,语法错误
3.缩进错误
4.不支持中文
二:
字符编码(编码格式:查)
ASCII unicode
#_*_coding:utf-8_*_
三:
ipython(交互式)
可以自动补齐
pycharm(python的IDE 继承开发环境)
CPU—–>内存——>硬盘
file–>setting–>editor–>colors & Fonts–>conf
file–>setting–>editor–>code style–>file and code templates
设置文件的开头:
# _*_ coding:utf-8 _*_
"""
file:${NAME}.py
date: ${YEAR}-${MONTH}-${DAY} ${TIME}
author: wangdandan
desc:
""
四:
注释:
# 单行注释(选中 ctrl+/)
"""
块注释
"""
五、
变量:
例题如下:
利用Python的开发工具进行运行
变量的格式化输出:
上一篇: input标签