1124: C语言训练-大、小写问题 摘要:解题思路:注意事项: 参考代码:print(input().lower())…… 题解列表 2024年04月19日 0 点赞 0 评论 115 浏览 评分:0.0
每天都想改学python系列 之 一行流改大小写 摘要:解题思路:无注意事项:无参考代码:凑个字数要不这篇题解发不出来print(input().lower())…… 题解列表 2022年09月14日 0 点赞 0 评论 142 浏览 评分:9.9
字符转换函数即可 摘要:解题思路:。。。。。。注意事项:。。。。。。参考代码:string=input() print(string.lower())…… 题解列表 2022年08月01日 0 点赞 0 评论 178 浏览 评分:9.9
32!32!32!32!32!32!32!32!记不住要会用软件试出来 摘要:解题思路:注意事项:现在不太看题解,就自己用IDLE写,有联系就是不一样,会越来越熟练,大概几题程序题,应该要模拟一下,控制一下按时间参考代码:s=input()for i in s: if (…… 题解列表 2022年05月24日 0 点赞 0 评论 127 浏览 评分:0.0
关于如何用多行代码写出str.lower()的功能 摘要:解题思路:注意事项:参考代码:a = list(input())for i in range(len(a)): if 65<=ord(a[i])<= 90: num = ord(…… 题解列表 2022年05月10日 0 点赞 0 评论 113 浏览 评分:0.0
1124: C语言训练-大、小写问题-题解(python) 摘要:解题思路:直接使用lower函数,将所有大写字母转化为小写注意事项:参考代码:a = input().lower()print(a)…… 题解列表 2021年10月19日 0 点赞 0 评论 185 浏览 评分:0.0
python 超简单写法 摘要:解题思路:注意事项:参考代码:x = input()if len(x) < 100: print(x.lower())#数字太少不让发 这段别管 我随便加点sadadasddsadasdsada…… 题解列表 2021年05月04日 0 点赞 0 评论 159 浏览 评分:0.0
干净的解法 摘要:解题思路:python中有转换大小写的函数:upper()----所有字母大写;lower()----所有字母小写 注意事项:参考代码:st=input() …… 题解列表 2021年04月10日 0 点赞 0 评论 169 浏览 评分:0.0
改学python吧!!! 摘要:`````python #1124 大小写问题 st = input() print(st.lower()) ````` //凑字数、凑字数、凑字数、凑字数、凑字数、凑字数:kissin…… 题解列表 2021年03月05日 0 点赞 0 评论 285 浏览 评分:9.9