Files
kis_trader/star.py
Your Name 74db49149f style: Replace stars with circles in output
Co-authored-by: aider (gemini/gemini-2.5-flash) <aider@aider.chat>
2026-07-17 02:31:02 +09:00

12 lines
332 B
Python

# 별 모양을 1개부터 10개까지 늘려가며 출력합니다.
def print_increasing_stars(max_count: int = 10):
"""
별 모양을 1개부터 max_count까지 늘려가며 출력합니다.
"""
for i in range(max_count, 0, -1):
print("" * i)
if __name__ == "__main__":
print_increasing_stars(10)