运行
Python
输入
:print("hello world")
命令行脚本
python hello.py
变量的定义
age = 18
print(type(age))
python中的关键字
输入:import keyword
print(keyword.kwlist)
python的输入和输出
格式化输出
方式一:使用百分号(
%
)字符串格式化
方式二:使用
format
字符串格式化
方式三:通过数字可以调换顺序
注释
运算符
赋值运算符:
逻辑运算符:
基本数据类型
Number
(数字)
String
(字符串)
List
(列表)
Tuple
(元组)
Set
(集合)
Dictionary
(字典)
不可变数据(
3
个):
Number
(数字)、
String
(字符串)、
Tuple
(元组);
可变数据(
3
个):
List
(列表)、
Dictionary
(字典)、
Set
(集合)。
作业: