摘要: //输出A-Z 26个大写字母 for(var i=0;i<26;i++){ console.log(String.fromCharCode(65+i)); } //输出a-z 26个小写字母 for(var i=0;i<26;i++){ console.log(String.fromCharCod 阅读全文
posted @ 2021-08-31 11:34 嗨,阿良 阅读(1265) 评论(0) 推荐(0) 编辑
摘要: import string string.ascii_uppercase # 获取26个大写字母 (ABCDEFGHIJKLMNOPQRSTUVWXYZ <class 'str'>) string.ascii_lowercase # 获取26个小写字母 (abcdefghijklmnopqrstuv 阅读全文
posted @ 2021-08-31 11:21 嗨,阿良 阅读(919) 评论(0) 推荐(0) 编辑