Python3练习题系列(06)——各种符号总结
Posted brightyuxl
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python3练习题系列(06)——各种符号总结相关的知识,希望对你有一定的参考价值。
Python3中的各种符号总结
1关键字
import keyword
print(keyword.kwlist, end=‘ ‘)
[‘False‘, ‘None‘, ‘True‘, ‘and‘, ‘as‘, ‘assert‘, ‘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‘]
2数据类型:
参考:https://blog.csdn.net/qq_30658895/article/details/75578754
类型 |
含义 |
示例 |
int |
整型 |
1 |
float |
浮点型 |
1.0 |
bool |
布尔值 |
True或False |
complex |
复数 |
a+bj |
string |
字符串 |
‘abc123’ |
list |
列表 |
[a,b,c] |
tuple |
元组 |
(a,b,c) |
set |
集合 |
{a,b,c} |
dictionary |
字典 |
{a:b,c:d} |
complex 复数的虚数部分不能省略
string 字符串不能包括有 ‘’ ,否则输出的不是原来的字符串
list和tuple list可以修改元素,tuple不能,但是tuple可以包括list等多种数据类型,占用资源多于list
set 没有排列的顺序及不会有重复的元素
dictionary 一个键对应多个值,但是不能有相同的键
3转义字符
参考:http://blog.sina.com.cn/s/blog_777e04300102x8mn.html
转义字符 |
描述 |
(在行尾时) |
续行符 |
\ |
反斜杠符号 |
‘ |
单引号 |
" |
双引号 |
a |
响铃 |
退格(Backspace) |
|
e |
转义 |