查理在牛客网
查理在牛客网
全部文章
题解
py学习笔记(11)
归档
标签
去牛客网
登录
/
注册
查理在牛客网的博客
全部文章
/ 题解
(共3篇)
题解 | #箭形图案#
''' 这是之前没想出时候打的 while True: try: n=int(input()) for i in range(n+1): print(" "*2*(2-i)+"*"*(i+1)) for j in ran...
Python3
循环
2022-02-04
0
319
题解 | #正方形图案#
while True: try: c=int(input()) a,b=1,1 while a<=c: while b<=c: print("* ",end="") ...
Python3
循环
2022-02-04
0
404
题解 | #班级成绩输入输出#
l1=list(map(float,input().split())) l2=list(map(float,input().split())) l3=list(map(float,input().split())) l4=list(map(float,input().split())) l5=lis...
Python3
循环
2022-01-23
0
263