yubin_repository/별(*) 생성기

11 lines
134 B
Plaintext
Raw Normal View History

2018-10-28 03:32:18 +00:00
a=int(input("초기 '*'을 정하십시오. : "))
b=0
c="*"*a
t=0
while t<a:
d=' '
d=d*t
print(d+c[b:])
t+=1
b+=1