字符逆序-题解(Python代码) 摘要:#字符逆序python切片操作 废话不多说,直接上代码: ```python str=input() print(str[-1::-1]) ``` input()的返回值类型为str,可以…… 题解列表 2020年05月01日 0 点赞 0 评论 1036 浏览 评分:8.0
[传智杯]程序员节发橙子-题解(Python代码) 摘要:```python n = int(input()) lis = list(map(int, input().split())) lit = [1, ] for i in range(1, l…… 题解列表 2020年04月30日 0 点赞 0 评论 1159 浏览 评分:6.0
[传智杯]软件工程实习-题解(Python代码) 摘要:```python import math m, n = map(int, input().split()) lis = [] for i in range(m): x, y = i…… 题解列表 2020年04月30日 0 点赞 0 评论 1042 浏览 评分:0.0
大鱼吃小鱼-题解(Python代码) 摘要:```python n,m=map(int,input().split()) lis=list(map(int,input().split())) for i in range(m): …… 题解列表 2020年04月28日 0 点赞 0 评论 2002 浏览 评分:6.7
C语言考试练习题_排列-题解(Python代码) 摘要:### 用for遍历会导致输出的结果和样例输出的结果顺序不一致 所以运行不通过。所以需要添加多一层循环控制输出的顺序 从样例输出看的出来 题目要求遍历顺序是123,124,134,234 所以…… 题解列表 2020年04月22日 0 点赞 1 评论 1104 浏览 评分:9.8
GC的苦恼-题解(Python代码) 摘要:```python while True: n=eval(input()) if 0…… 题解列表 2020年04月20日 0 点赞 0 评论 893 浏览 评分:0.0
陈教主的三角形-题解(Python代码) 摘要:```python while True: a,b,c=map(int,input().strip().split()) if(a+b>c and a+c>b and b+c>a…… 题解列表 2020年04月20日 0 点赞 0 评论 671 浏览 评分:2.0
妹子杀手的故事-题解(Python代码) 摘要:```python while True: a,b=map(int,input().strip().split()) if (a==0 and b==0): b…… 题解列表 2020年04月20日 0 点赞 0 评论 599 浏览 评分:0.0
数字整除-题解(Python代码) 摘要:这种贼大的数,还是Python来的快且简单。。。。 ```python while True: num = int(input()) if num == 0: …… 题解列表 2020年04月18日 0 点赞 0 评论 588 浏览 评分:0.0
倒杨辉三角形-题解(Python代码) 摘要:```python while True: n=int(input()) for i in reversed(range(1,n+1)): print(' …… 题解列表 2020年04月17日 0 点赞 0 评论 1700 浏览 评分:9.9