摘要: 1. r’xxxx’ 转义 如果在前面加r字符,则表示让这个字符串里面的内容失去转义的意义 s = r'\n这只是\n' # 字符... 阅读全文
posted @ 2022-10-07 20:26 I'm_江河湖海 阅读(96) 评论(0) 推荐(0) 编辑
摘要: python中在不同类型数据转换方面是有标准库的,使用非常方便。但是在开发中,经常在list中字符转成整形的数据方便遇到问题。这里就... 阅读全文
posted @ 2022-10-07 20:26 I'm_江河湖海 阅读(698) 评论(0) 推荐(0) 编辑
摘要: 题目 打印出如下图案(菱形):。 * *** ***** ******* ***** *** * 分析:一... 阅读全文
posted @ 2022-10-07 20:26 I'm_江河湖海 阅读(37) 评论(0) 推荐(0) 编辑
摘要: from random import randinta1 = [randint(10, 50) for _ in range(5)]... 阅读全文
posted @ 2022-10-07 20:26 I'm_江河湖海 阅读(40) 评论(0) 推荐(0) 编辑
摘要: 方法一:for in循环 from random import randint, samplea1 = {k: randint(1,... 阅读全文
posted @ 2022-10-07 20:26 I'm_江河湖海 阅读(71) 评论(0) 推荐(0) 编辑
摘要: 单层浅拷贝 import copya = 1 # 不可变数据类型copy_a = copy.copy(a)print(id(a),... 阅读全文
posted @ 2022-10-07 20:26 I'm_江河湖海 阅读(27) 评论(0) 推荐(0) 编辑
摘要: 1. Python中类中特性分成属性和方法 属性和方法都分为私有和公有的,私有的只可以在本类中使用外部是无法访问的 2. 定义属性(... 阅读全文
posted @ 2022-10-07 20:26 I'm_江河湖海 阅读(46) 评论(0) 推荐(0) 编辑
摘要: 1. python中的魔法方法, 类似__init__,__str__等等,这些内置好的特定的方法进行特定的操作时会自动被调用 2.... 阅读全文
posted @ 2022-10-07 20:26 I'm_江河湖海 阅读(12) 评论(0) 推荐(0) 编辑
摘要: #includeusing namespace std;int main(){ float a,b; scanf("%f%f",&a,&b); printf("%.3f%%",b/a*100); return 0;} 阅读全文
posted @ 2022-10-07 20:22 I'm_江河湖海 阅读(2) 评论(0) 推荐(0) 编辑
摘要: #includeusing namespace std;int main(){ int a,b; cin>>a>>b; cout<<a/b<<" "<<a%b; return 0; } 阅读全文
posted @ 2022-10-07 20:22 I'm_江河湖海 阅读(14) 评论(0) 推荐(0) 编辑