【程序6】用*号输出字母C的图案

mac2022-06-30  70

我自己写的

print(' * * *\n'); print(' * \n'); print(' * \n'); print(' * * * *\n');

官方答案

print('*' * 10) for i in range(5): print('* ') print('*' * 10)

转载于:https://www.cnblogs.com/fanren224/p/8457281.html

相关资源:Konva基础文档
最新回复(0)