1003一行解(Python) 摘要:解题思路:注意事项:参考代码:print(''.join(list(map(lambda x : chr(ord(x) + 4), input()))))基础代码(完全问题题目要求)c…… 题解列表 2023年02月24日 0 点赞 0 评论 79 浏览 评分:0.0
编写题解 1003: [编程入门]密码破译 摘要:解题思路:注意事项:参考代码:str=input() for i in str: print(chr(ord(i)+4),end='')或者直接print("Glmre")…… 题解列表 2022年05月01日 0 点赞 0 评论 256 浏览 评分:0.0
密码破译[使用Python] 摘要:str1 = input() strList = list(str1) count = 0 chrNum = 0 while count < len(strList): chrNum…… 题解列表 2022年03月31日 0 点赞 0 评论 201 浏览 评分: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
[编程入门]密码破译-题解(Python代码) 摘要:解题思路:注意事项:Python参考代码:c1='C' c2='h' c3='i' c4='n' c5='a' …… 题解列表 2020年06月28日 0 点赞 0 评论 423 浏览 评分:0.0
1003: [编程入门]密码破译 摘要:解题思路:本题过水,所以输出Glmre即可,或用for循环解决。注意事项:参考代码:#直接输出print("Glmre")#用for循环解决inp=input()for i in inp: pri…… 题解列表 2023年01月04日 0 点赞 0 评论 90 浏览 评分:0.0
1003: [编程入门]密码破译 摘要:解题思路:注意事项:参考代码:str = input().lower() s = "" for i in str: if i == 'w': s += …… 题解列表 2024年04月10日 0 点赞 0 评论 236 浏览 评分:0.0
密码破译-Python 摘要:解题思路:输入一串字符串,遍历字符串的每一个字符,利用ascll码的相互转换注意事项:参考代码:str1 = input()for i in str1: print(chr(ord(i)+4),…… 题解列表 2022年09月24日 0 点赞 0 评论 99 浏览 评分:0.0
密码破译(chr()和ord()函数的应用) 摘要:解题思路:先将输入的i转化为ascll值后加4,再转化为字母注意事项:chr()函数:将ascll码转化为字符 ord()函数:将字符转化为ascll码简单代码:inp=in…… 题解列表 2022年11月01日 0 点赞 0 评论 95 浏览 评分:0.0
[编程入门]密码破译python 摘要:解题思路:注意事项:参考代码:C = 'G'h = 'l'i = 'm'n = 'r'a = 'e'print('…… 题解列表 2022年01月16日 0 点赞 0 评论 232 浏览 评分:4.7