摘要: 一、壁纸 1.WallHaven:https://wallhaven.cc/ 2.10Wallpaper:https://www.10wallpaper.com/ 3.alphacoders:https://wall.alphacoders.com/?lang=Chinese 4.极简壁纸:http 阅读全文
posted @ 2021-07-22 17:20 不能说的秘密 阅读(616) 评论(1) 推荐(0) 编辑
摘要: 一、无敌全能综合导航站 1.虫部落(聚合搜索平台) https://search.chongbuluo.com 2.科塔学术(专业学术导航) https://site.sciping.com 3.码力全开(设计资源导航) https://design.maliquankai.com 4.SeeSee 阅读全文
posted @ 2021-07-22 17:03 不能说的秘密 阅读(2770) 评论(0) 推荐(0) 编辑
摘要: import numpy as np #创建数组arr arr = np.array([3,7,5,6,8,9,7,2,6,2,5,9,10]) print('第1个数组:',arr) print('第1个数组的去重(去重后的值)数组:') arr_u = np.unique(arr) print( 阅读全文
posted @ 2021-07-22 11:06 不能说的秘密 阅读(671) 评论(0) 推荐(0) 编辑
摘要: 原字符串左侧对齐, 右侧补零: str.ljust(width,'0') input: '789'.ljust(32,'0') output: '78900000000000000000000000000000' 原字符串右侧对齐, 左侧补零: 方法一: str.rjust(width,'0') i 阅读全文
posted @ 2021-07-22 10:39 不能说的秘密 阅读(1107) 评论(0) 推荐(0) 编辑