본문 바로가기

Python_Intermediate/Algorithmus

Python - 5 x 5 사각형 * 출력 알고리즘

반응형

Q>

5 x 5 사각형 * 출력 알고리즘


A>

for i in range(5):
for j in range(5):
print('*', end='')
print()


O>

*****

*****

*****

*****

*****


Process finished with exit code 0


반응형