标签:pytho tps 图片 文件 mamicode img col 实现 width
1.Python是一种解释型、面向对象、动态数据类型的高级程序设计语言
2.Python用严格的缩进表示代码块
3.Python有着丰富的第三方库
安装(window下)
访问Python官网下载安装包
选择 Download Windows x86-64 executable installer
x86-64表示64位
x86表示32位
executable表示可执行文件
具体步骤请访问菜鸟教程(懒得写了)
注释
#我是一条单行注释
‘‘‘我是一条 多行注释‘‘‘
"""我也是一条
多行注释"""
缩进
Python最具特色的就是以缩进区分代码块
而不是以{}
if True: print(‘True‘) else: print(‘Flase‘)
同一代码块的语句必须包含相同的缩进空格数
if True: print(1) else: print(2) if True: print(3)
缩进不一致程序会报错
IndentationError: unindent does not match any outer indentation level
跨行语句
有些语句本身就可以跨行,如:
[],{},()中的语句可以多行书写
list_ = [1,2, 3,4,5] set_ = {1,2, 3,4,5} tuple_ = (1,2 3,4,5) fuc(1,2, 3,4,5)d
除此之外,可以使用反斜杠开始实现多行语句
total = 1+ 2+ 3
单行多语句
Python的语句结尾是不用加上分号的,除非你想在一行内写下多条语句
a = 1;b = 2
标签:pytho tps 图片 文件 mamicode img col 实现 width
原文地址:https://www.cnblogs.com/jawide/p/11485052.html