摘要: 一、python中数据类型(红色为可变类型) 1、字符串 str2、布尔类型 bool3、整数 int 4、浮点数 float5、数字 (int和float)6、列表 list7、元组 tuple8、字典 dict9、日期 date 二、可变类型 可变类型:在id(内存地址)不变的情况下,value 阅读全文
posted @ 2021-11-27 23:42 林深见鹿,海蓝见鲸 阅读(105) 评论(0) 推荐(0) 编辑
摘要: # -*- coding:utf-8 -*- # __author__ = "林深见鹿海蓝见鲸" # ② 九九乘法表 name = "99乘法表" title = name.center(60,"-") print(title) for i in range(1,10): # print("I:", 阅读全文
posted @ 2021-11-27 23:01 林深见鹿,海蓝见鲸 阅读(136) 评论(0) 推荐(0) 编辑
摘要: # -*- coding:utf-8 -*- # __author__ = "林深见鹿海蓝见鲸" # ③随机20个京牌 import string import random car_list = [] begin = "京" count = 0 while count<3: # count+=1 阅读全文
posted @ 2021-11-27 22:57 林深见鹿,海蓝见鲸 阅读(124) 评论(0) 推荐(0) 编辑