[编程入门]电报加密-题解(python代码) 摘要:解题思路: 利用ASCII值进行大小判断,注意 Z 和 z 进行特殊处理。注意事项:参考代码:s=input()x=''for i in s: if i == 'Z…… 题解列表 2022年01月25日 0 点赞 0 评论 421 浏览 评分:9.9
[编程入门]电报加密-题解(Python代码) 摘要:** 代码如下:** x=input() s="" for i in x: if i>="a" and i="A" and i…… 题解列表 2019年12月04日 0 点赞 6 评论 1832 浏览 评分:9.9
[编程入门]电报加密(简单入门) 摘要:解题思路:注意事项:参考代码:注意事项:字符串需要引号才能通过ord转换为数字形式a=str(input()) res=[] for i in a: i=ord(i)#122 …… 题解列表 2022年04月07日 0 点赞 0 评论 615 浏览 评分:9.9
isalpha()判断 摘要:解题思路:注意事项:参考代码:a = str(input())s = ''for i in a: if i.isalpha(): t = chr(ord(i)+1)…… 题解列表 2022年04月23日 0 点赞 0 评论 244 浏览 评分:9.9
[编程入门]电报加密-题解(Python代码)python 摘要:ord()函数返回对应字符的ascii码 chr()函数返回ascii码对应的字符 ![](/image_editor_upload/20191122015257_76634.png) 步骤…… 题解列表 2019年11月22日 0 点赞 0 评论 1112 浏览 评分:9.7
[编程入门]电报加密-题解(Python代码) 摘要:有注释版 ```python #continue退出本次循环,控制输出 str = input() for i in str : #遍历输出 if i.isa…… 题解列表 2020年05月26日 0 点赞 0 评论 371 浏览 评分:9.0
还行,一般般吧 摘要:解题思路:注意事项:参考代码:a=str(input())b=[]for i in a: i=ord(i) if i in range(97,122): b.append(c…… 题解列表 2022年02月21日 0 点赞 0 评论 186 浏览 评分:6.0
[编程入门]电报加密-题解(Python代码) 摘要:参考代码:def fun1(str1): str2='' #字符串不可改变,故新建空字符串 for i in str1: if i.isalpha()…… 题解列表 2020年10月26日 0 点赞 0 评论 325 浏览 评分:5.5
[编程入门]电报加密 摘要:解题思路:注意事项:参考代码:a=input()b=[]for i in a: if i>='a' and i<'z'or i>='A' and …… 题解列表 2022年03月04日 0 点赞 0 评论 154 浏览 评分:0.0
一个想法,反正第一想法是这个思路 摘要:解题思路:注意事项:默认是只转换小写字母参考代码:a = list(input())#print(a)for i in range(len(a)): ASCII = ord(a[i]) i…… 题解列表 2022年04月14日 0 点赞 0 评论 103 浏览 评分:0.0