From 89ef88180b20c51ad44d1dc681f1a98157acbd58 Mon Sep 17 00:00:00 2001 From: ShotaAk Date: Thu, 16 Jul 2020 14:31:46 +0900 Subject: [PATCH] Fix step1.py --- SampleProgram/step1.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/SampleProgram/step1.py b/SampleProgram/step1.py index 3ff1227..93a2c3f 100644 --- a/SampleProgram/step1.py +++ b/SampleProgram/step1.py @@ -8,8 +8,8 @@ for filename in files: with open(filename, 'w') as f: f.write("1") - time.sleep(0.5) - for filename in files: - with open(filename, 'w') as f: - f.write("0") - time.sleep(0.5) + time.sleep(0.5) + for filename in files: + with open(filename, 'w') as f: + f.write("0") + time.sleep(0.5)