python3的OJ输入
1、输入整数
1 | case = int(input().strip()) |
2、 输入浮点数
1 | test = float(input().strip()) |
3、字符串
1 | test = input().strip() |
4、 输入 1 2 3 4 5
1 | nums = list(map(int, input().strip().split())) |
5、输入 1.0 2.0 3.0 4.0
1 | nums = list(map(float, input().strip().split())) |
6、输入 a b c d e
1 | test = list(input().strip().split()) |
7、创建二维数组
1 | test = [[0 for i in range(col)] for j in range(row)] |
8、未知多少输入行
1 | while True: |
9、满足条件一的情况下对条件二排序
1 | a = [[2, 3], [4, 1], [2, 8], [2, 1], [3, 4]] |
python3的OJ输入
https://zhangfuli.github.io/2019/10/13/python3的OJ输入/