From dd0d8b96692bed669e3032342f351fd1166e29d5 Mon Sep 17 00:00:00 2001 From: letmestar <33407125+letmestar@users.noreply.github.com> Date: Sat, 2 Dec 2017 23:25:27 +0900 Subject: [PATCH] =?UTF-8?q?60145171=5F=EA=B9=80=ED=83=9C=EC=9C=A4=5FLetter?= =?UTF-8?q?Test=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit TAEYUN이 나오도록 변경하였습니다. --- effects.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/effects.py b/effects.py index c5d251e..c9982e9 100644 --- a/effects.py +++ b/effects.py @@ -339,6 +339,9 @@ def run(self): # Display upper and lower case letters. The break between 90 and 97 is # for non-letter keyboard characters. for ord in range(65, 91) + range(97, 123): + taeyun = [84, 65, 69, + 89, 85, 78] + for ord in taeyun : self.wall.clear() # Set every pixel to the background color, since ascii8x8 will only @@ -351,7 +354,7 @@ def run(self): ascii8x8.draw_chr(chr(ord), self.wall, foreground, background, x_offset, y_offset) self.wall.draw() - time.sleep(.1) + time.sleep(1) class Bouncer(Effect): class Ball(object):