摘要: T1:Arithmetic Progression 模拟 代码实现 a, b, d = map(int, input().split()) for i in range(a, b+1, d): print(i, end=' ') T2:Append 模拟 代码实现 q = int(input()) 阅读全文