1003: [编程入门]密码破译 摘要:解题思路:注意事项:参考代码:str = input().lower() s = "" for i in str: if i == 'w': s += …… 题解列表 2024年04月10日 0 点赞 0 评论 236 浏览 评分:0.0
[编程入门]密码破译 摘要:解题思路:先将结果存储起来,之后一次输出注意事项:注意w,x,y,z的处理参考代码:n = input()l = []for i in n: j = chr(ord(i)+4) if no…… 题解列表 2023年04月02日 1 点赞 0 评论 133 浏览 评分:0.0
编写题解 1003: [编程入门]密码破译 摘要:python参考代码:用列表:s = input()m = []for i in s: m.append(chr(ord(i)+4))print("".join(m))用字符串:s = inpu…… 题解列表 2023年03月16日 0 点赞 0 评论 733 浏览 评分:9.9
1003一行解(Python) 摘要:解题思路:注意事项:参考代码:print(''.join(list(map(lambda x : chr(ord(x) + 4), input()))))基础代码(完全问题题目要求)c…… 题解列表 2023年02月24日 0 点赞 0 评论 79 浏览 评分:0.0
1003: [编程入门]密码破译 摘要:解题思路:本题过水,所以输出Glmre即可,或用for循环解决。注意事项:参考代码:#直接输出print("Glmre")#用for循环解决inp=input()for i in inp: pri…… 题解列表 2023年01月04日 0 点赞 0 评论 90 浏览 评分:0.0
密码破译(chr()和ord()函数的应用) 摘要:解题思路:先将输入的i转化为ascll值后加4,再转化为字母注意事项:chr()函数:将ascll码转化为字符 ord()函数:将字符转化为ascll码简单代码:inp=in…… 题解列表 2022年11月01日 0 点赞 0 评论 94 浏览 评分:0.0
[编程入门]密码破译 摘要:解题思路:注意事项:参考代码:ls=[] #创建空列表,用于存放加密后的密码 ls1=input() #输入密码 for i in ls1: i=chr(ord(i)+4) #加密 …… 题解列表 2022年10月17日 0 点赞 0 评论 229 浏览 评分:9.0
密码破译-Python 摘要:解题思路:输入一串字符串,遍历字符串的每一个字符,利用ascll码的相互转换注意事项:参考代码:str1 = input()for i in str1: print(chr(ord(i)+4),…… 题解列表 2022年09月24日 0 点赞 0 评论 99 浏览 评分:0.0
1003: [编程入门]密码破译(Python代码) 摘要:####**解题思路: ** ***方法一:*** 1.**输入**字符串 2.通过遍历,对字符串的每一个字符的**ASCII码**进行**加4** 3.…… 题解列表 2022年07月22日 0 点赞 0 评论 450 浏览 评分:8.4
编写题解 1003: [编程入门]密码破译 摘要:解题思路:注意事项:参考代码:a = ['C', 'h', 'i', 'n', 'a']c = []for i in a…… 题解列表 2022年06月16日 0 点赞 0 评论 183 浏览 评分:7.0