C语言训练-大、小写问题-题解(Python代码) 摘要:解题思路:调用str.lower()方法注意事项:无参考代码:print(input().lower())写在最后:这种用一行代码通过的感觉贼爽(不要怀疑,这就是凑字数的)%%%&F&^CVVHVXN…… 题解列表 2020年08月14日 0 点赞 4 评论 752 浏览 评分:9.9
改学python吧!!! 摘要:`````python #1124 大小写问题 st = input() print(st.lower()) ````` //凑字数、凑字数、凑字数、凑字数、凑字数、凑字数:kissin…… 题解列表 2021年03月05日 0 点赞 0 评论 364 浏览 评分:9.9
字符转换函数即可 摘要:解题思路:。。。。。。注意事项:。。。。。。参考代码:string=input() print(string.lower())…… 题解列表 2022年08月01日 0 点赞 0 评论 238 浏览 评分:9.9
每天都想改学python系列 之 一行流改大小写 摘要:解题思路:无注意事项:无参考代码:凑个字数要不这篇题解发不出来print(input().lower())…… 题解列表 2022年09月14日 0 点赞 0 评论 192 浏览 评分:9.9
C语言训练-大、小写问题-题解(Python代码) 摘要: x=input(str()) for i in x: if('A'…… 题解列表 2020年02月16日 0 点赞 0 评论 489 浏览 评分:0.0
C语言训练-大、小写问题-题解(Python代码) 摘要:```python s=input() for i in s: if i.isupper(): print(chr(ord(i)+32),end='') el…… 题解列表 2020年04月07日 0 点赞 0 评论 414 浏览 评分:0.0
干净的解法 摘要:解题思路:python中有转换大小写的函数:upper()----所有字母大写;lower()----所有字母小写 注意事项:参考代码:st=input() …… 题解列表 2021年04月10日 0 点赞 0 评论 295 浏览 评分:0.0
python 超简单写法 摘要:解题思路:注意事项:参考代码:x = input()if len(x) < 100: print(x.lower())#数字太少不让发 这段别管 我随便加点sadadasddsadasdsada…… 题解列表 2021年05月04日 0 点赞 0 评论 222 浏览 评分:0.0
1124: C语言训练-大、小写问题-题解(python) 摘要:解题思路:直接使用lower函数,将所有大写字母转化为小写注意事项:参考代码:a = input().lower()print(a)…… 题解列表 2021年10月19日 0 点赞 0 评论 259 浏览 评分:0.0