编写题解 1571: 蓝桥杯算法提高VIP-输出正反三角形 摘要:解题思路:注意事项:参考代码:m,n = map(int,input().split()) xing1 =list(range(1,2*m,2)) xing2 = xing1[:] xing2.…… 题解列表 2021年12月21日 0 点赞 0 评论 146 浏览 评分:0.0
蓝桥杯算法提高VIP-输出正反三角形-题解(Python代码) 摘要:```python n , m = map(int,input().split())#输入 for i in range(1,n+1):#1到n print(" "*(n+m-i),en…… 题解列表 2019年11月25日 0 点赞 0 评论 526 浏览 评分:0.0
python-输出正反三角形 摘要:解题思路:注意事项:参考代码:def f(n,m): for i in range(1,n+1): print('{:>{}}{:>{}}'.for…… 题解列表 2022年01月23日 0 点赞 0 评论 249 浏览 评分:0.0
优质题解 蓝桥杯算法提高VIP-输出正反三角形 (Python代码)格式易错!! 摘要:#### ①首先是python里生成自然数的方法range: ![](/image_editor_upload/20200206025800_31016.png) ##### 结果是: ![]…… 题解列表 2020年02月06日 0 点赞 0 评论 856 浏览 评分:8.0
三行解决,超简单 摘要:解题思路:注意事项:参考代码:a,b=map(int,input().split()) for i in range(1,a+1): print(' '*b+' &…… 题解列表 2022年03月29日 0 点赞 0 评论 266 浏览 评分:9.9
蓝桥杯算法提高VIP-输出正反三角形-题解(Python代码) 三行搞定 未配注释 摘要:```python n,m = map(int,input().split()) for i in range(1,n+1): print("{}{}{}{}{}".format(' '…… 题解列表 2020年03月09日 0 点赞 2 评论 252 浏览 评分:9.9