Fixed mixed indentation in exercise 1_1 and solution.

This commit is contained in:
William Rowell 2023-07-19 23:20:45 -07:00
parent 118b01e8c4
commit 87f932a66b
No known key found for this signature in database
GPG Key ID: 37BCE34F94A3D0BE
2 changed files with 2 additions and 2 deletions

View File

@ -39,7 +39,7 @@ chars = '\|/'
def draw(rows, columns):
for r in rows:
print(''.join(random.choice(chars) for _ in range(columns)))
print(''.join(random.choice(chars) for _ in range(columns)))
if __name__ == '__main__':
if len(sys.argv) != 3:

View File

@ -7,7 +7,7 @@ chars = '\|/'
def draw(rows, columns):
for r in range(rows):
print(''.join(random.choice(chars) for _ in range(columns)))
print(''.join(random.choice(chars) for _ in range(columns)))
if __name__ == '__main__':
if len(sys.argv) != 3: