1.单行注释
#这就是单行注释
多行注释如下图
"""
这里面写的内容都不会运行
1
2
3
"""
2.python标识符的命名规则
1.由数字,字母,下划线组成,不能包含特殊符号 2.不能由数字开头 3.区分大小写 4.不能是内置关键字 建议: 1.大驼峰,小驼峰 2.建议使用下划线连接 3.建议不要使用中文 4.不建议太长 5.见名知意
3.常量和变量
# 常量:pi
pi = 3.14
# 给不同的变量赋相同的值
num1 = num2 = 10
print(num1)
print(num2)
# 给不同的变量赋值
# b=20
# c=10
b, c = 20, 10
print(b, c)
4.数据类型的转换
'''
数据类型转换:
int() 把数据转换成整形
float() 把数据转换成浮点型
str() 把数据转换成字符串
list() 把数据转换成列表
tuple() 把数据转换成元组
set() 把数据转换成集合
'''
a = 17
# a变17.0
print(float(a))
b = 8.1
c = 13.99999
# b,c转换成整数
print(int(b))
print(int(c))
# print(d) 程序是从上向下执行,此时会报错
d = 'hello'
# 把d转换成列表[hello],['h','e','e','l','o']
print(list(d))
print(tuple(d))
print(set(d))
e = '[1,2,3,4,5,]'
f = '(1, 2, 3, 4, 5)'
g = '10'
# eval() 把字符串里面的数据类型转换出来
print(e)
# ctrl+d 复制粘贴 ctrl+z 撤销上一步操作
print(eval(e), type(eval(e)))
print(eval(f), type(eval(f)))
print(eval(g), type(eval(g)))