From 74db49149f55e647f1d91b6bce8735a8730f13b8 Mon Sep 17 00:00:00 2001 From: Your Name Date: Fri, 17 Jul 2026 02:31:02 +0900 Subject: [PATCH] style: Replace stars with circles in output Co-authored-by: aider (gemini/gemini-2.5-flash) --- star.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/star.py b/star.py index 0edd15e..c4a75aa 100644 --- a/star.py +++ b/star.py @@ -5,7 +5,7 @@ def print_increasing_stars(max_count: int = 10): 별 모양을 1개부터 max_count까지 늘려가며 출력합니다. """ for i in range(max_count, 0, -1): - print("*" * i) + print("○" * i) if __name__ == "__main__": print_increasing_stars(10)