python_基础内容

一、注释:

1、单行注释:#(快捷键control + /)

# 这是单行注释

2、多行注释: 三单引号或三双引号

"""
多行注释
多行注释
"""
'''
多行注释
多行注释
'''

二、print输出

print('hello')

可以输出多个

print('hello', 'world', '啊')

终端:

E:\practice\python\venv\Scripts\python.exe E:/practice/python/hello.py
hello
hello world 啊

Process finished with exit code 0

可以输出整数并计算

print(200 + 300)

三、变量

# 变量使用前必须先定义
msg1 = "hello1"
msg2 = "hello2"
print(msg1)
# 删除
del msg2
# 删除的变量不能继续使用
print(msg2)

终端


python_基础内容_第1张图片
image.png

四、input输入

msg3 = input("请输入你的信息:")
# 接收终端输入
print(msg3)

终端:

hello
hello1
请输入你的信息:你好啊
你好啊

Process finished with exit code 0

五、标识符

不能用关键字
查找系统关键字

import keyword
print (keyword.kwlist)

终端
['False', 'None', 'True', 'and', 'as', 'assert', 'async', 'await', 'break', 'class', 'continue', 'def', 'del', 'elif', 'else', 'except', 'finally', 'for', 'from', 'global', 'if', 'import', 'in', 'is', 'lambda', 'nonlocal', 'not', 'or', 'pass', 'raise', 'return', 'try', 'while', 'with', 'yield']

六、数据类型

# 数据类型
# str('字符串')
# Number(数字) 整数、浮点数、复数
# bool(布尔值)
# None(空值)
# list(列表)
# tuple(元组)
# dict(字典)
# set(集合)

你可能感兴趣的:(python_基础内容)