你好,我是悦创。

    1. 代码左右两边加空格;
    2. 多个变量同时赋值:
    1. a = b = c = 100
    1. 代码一键美化快捷键:control + alt + L(Windows)、option + Command + L(Mac OS)
    2. 注释:Control + /(Windows)、Command + /(Mac OS)
    3. KeyWords: | 数据类型 | 关键词 | 单词 | | —- | —- | —- | | 布尔型:True、False | bool() | boolean | | 数字型:int:1, 2, 3、float: 1.0, 2.0 | int()、float() | | | 字符串:’lilei’、”hanmeimei”、“”“aiyc”“” | str() | String | | 元组:(1, 2, 3, 4, 5, 6) | tuple() | tuple | | 字典:{key:value} | dict() | | | 集合:{1, 2, 3, 4, 5, 6, 7, 8, 9} | set() | set | | 列表:[1, 2, 3, 4, 5, 6] | list() | list |
    1. type():查看数据类型
    2. Int、float
    3. str:有序、单双三引号
    4. list:[,]、有序、任意数据类型、可变
    5. tuple:有序、任意数据类型、不可变
    6. set:去重、{1, 2, 3, 4, 5, 6}、确定性、无序性、互异性

    image.pngimage.png