Hello, world!-题解(Python代码) python 摘要:chr() 用一个范围在 range(256)内的(就是0~255)整数作参数,**返回一个对应的字符** ```python def f(arr):#定义函数 arr = [int(i…… 题解列表 2019年11月22日 0 点赞 0 评论 1094 浏览 评分:4.8
Hello, world!-题解(Python代码) 摘要:python中没有像c语言一样直接判断输入EOF的语句所以用sys.stdin来代替EOF输入 import sys while True: line = sys.…… 题解列表 2019年11月24日 0 点赞 2 评论 1455 浏览 评分:9.0
Hello, world!-题解(Python代码) 摘要: n = list(map(int,input().split())) while min(n)>=32: try: n.extend(ma…… 题解列表 2021年01月21日 0 点赞 1 评论 720 浏览 评分:7.0
Hello, world!-题解(Python代码) 摘要:注意事项:输入有一个回车,写两次input参考代码:num_list1 = map(int, input().strip().split())num_list2 = map(int, input().…… 题解列表 2021年02月18日 0 点赞 0 评论 314 浏览 评分:6.7
Hello, world!-题解(python代码) 摘要:解题思路:注意事项:参考代码:lst=list(map(str,input().split()))lst2=list(map(str,input().split()))lst.extend(lst2)…… 题解列表 2022年01月26日 0 点赞 0 评论 384 浏览 评分:9.5
Hello,world! 摘要:```python m = [int(i) for i in input().split()] n = [int(i) for i in input().split()] s = "" for…… 题解列表 2022年02月23日 0 点赞 0 评论 486 浏览 评分:9.9
!!!记住多行输入的方法!!! 摘要:解题思路:注意事项:参考代码:import syswhile True: line=sys.stdin.readline() if not line: break fo…… 题解列表 2022年06月20日 0 点赞 0 评论 96 浏览 评分:0.0
1083——————Hello,World! 摘要:题目 1083: Hello, world! **题目描述** This is the first problem for test. Since all we know the ASCII …… 题解列表 2022年08月09日 0 点赞 0 评论 625 浏览 评分:0.0
ASCII码转字母 摘要:解题思路:将ASCII码转为字母用函数chr(),列表和字符串的连接都可以用+注意事项:输入两行要接在一起,输出要输出一行参考代码:L = list(map(int,input().split()))…… 题解列表 2023年03月17日 0 点赞 0 评论 54 浏览 评分:0.0