摘要: 数据类型 int str bool [] list 列表 存储大量的数据 里面的数据可以更改 () tuple 元组 里面写入的数据不能更改 {} dict 词典 储存大量的关联型的数据,查询速度非常快。 set 交集,并集,差集 阅读全文
posted @ 2022-08-15 08:31 safetly 阅读(14) 评论(0) 推荐(0)
摘要: s = 'taiBai's1 = s.upper()print(s1)全部转化为 大写 username = input('用户名')password = input('密码')code = 'QweA'print(code)your_code = input('请输入验证码:不区分大小写')if 阅读全文
posted @ 2022-08-15 08:31 safetly 阅读(135) 评论(0) 推荐(0)