解题思路:
利用标准库中的无限迭代器产生数字,然后根据计算的长度控制循环的结束
注意事项:
参考代码:
from itertools import count n, last_index = int(input()), 0 temp, cycle = '', count(1) while len(temp) < 4 * n - 4: temp += str(next(cycle)) temp = temp[:4 * n - 4] print(((2 * (n - 2) + 2) // 2) * "." + temp[0]) for i in range(1, n - 1): print(((2 * (n - 2) + 2) // 2 - i) * "." + temp[i] + \ (2 * (i - 1) + 1) * "." + temp[-i]) last_index = i print(temp[last_index + 1:-last_index:1])
0.0分
1 人评分
输出正反三角形 (C语言代码)浏览:860 |
众数问题 (C语言代码)浏览:912 |
C语言程序设计教程(第三版)课后习题8.8 (C语言代码)浏览:897 |
Hello, world! (C++代码)浏览:1779 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:647 |
A+B for Input-Output Practice (VI) (C语言代码)浏览:575 |
剪刀石头布 (C++代码)浏览:1814 |
大神老白 (C语言代码)浏览:638 |
简单的事情 (C语言代码)浏览:679 |
母牛的故事 (C语言代码)浏览:626 |