06 2020 档案
摘要:一、注释 1、单行注释 # # python 2.x print "你好" # python 3.x print("你好") 2、多行注释 ''' ''' 或 """ """ ''' print("123") print("456") ''' """ print("qqq") print("w
阅读全文
摘要:一、基本数据类型 1 Number 数字类型 (int float bool complex) 2 str 字符串类型 3 list 列表类型 4 tuple 元组类型 5 set 集合类型 6 dict 字典类型 二、Number类型 1、int整形 Number类型 2、float浮点型 # (
阅读全文