C语言训练-大、小写问题-题解(Python代码) 摘要:解题思路:调用str.lower()方法注意事项:无参考代码:print(input().lower())写在最后:这种用一行代码通过的感觉贼爽(不要怀疑,这就是凑字数的)%%%&F&^CVVHVXN…… 题解列表 2020年08月14日 0 点赞 4 评论 649 浏览 评分:9.9
C语言训练-大、小写问题-题解(Python代码) 摘要:```python s=input() for i in s: if i.isupper(): print(chr(ord(i)+32),end='') el…… 题解列表 2020年04月07日 0 点赞 0 评论 306 浏览 评分:0.0
C语言训练-大、小写问题-题解(Python代码) 摘要: x=input(str()) for i in x: if('A'…… 题解列表 2020年02月16日 0 点赞 0 评论 383 浏览 评分:0.0