首页
Python
Java
前端
数据库
Linux
Chatgpt专题
开发者工具箱
isupper专题
检查字符串数组中的每个字符串是否全部由大写字母组成numpy.char.isupper()
【小白从小学Python、C、Java】 【计算机等级考试+500强双证书】 【Python-数据分析】 检查字符串数组中的每个字符串 是否全部由大写字母组成 numpy.char.isupper() [太阳]选择题 请问关于以下代码最终输出结果的是? import numpy as np a = np.array(['PYTHON','Python']) print("【
阅读更多...
isalpha() / isupper() / islower()函数
转载: https://blog.csdn.net/weixin_42072280/article/details/82782469
阅读更多...
信息学奥赛第三节 —— 字符串3(对字符串使用sort/reverse + isupper() + islower() + isdigit())
与字符串有关的函数 字符类型的判断: isalpha(c) —— 是否是字母islower(c) —— 是否是小写字母isupper(c) —— 是否是大写字母isdigit(c) —— 是否是数字 字符类型转换: tolower() —— 转小写toupper() —— 转大写 排序: sort() —— 默认升序排序,常用sort(a,a + n)对整个数组排序,sor
阅读更多...