数据类型
整型:-2,-1,0,1,2,3,4
浮点型:-1.25,-1.0,0.0,1.2
字符串:‘a’,‘aa’,‘aaa’,‘Hello World’
字符串的连接和复制
字符串不能和整数一起拼接
这里只能是整型,不能乘以浮点型
在变量中保存值
1、赋值语句
2、变量名
1)只能是一个词
2)只能包含字母,下划线,数字
3)不能以字母开头
注释的使用
```python
#This program says hello and asks for my name
print(),input(),len()函数
print():打印函数
input():输入函数
len():计算字符串长度