Merge branch 'master' of https://git.vvvvvvaria.org/mb/AMRO-2020-publication
This commit is contained in:
commit
33bc9f4332
50
ascii-art/blobs.py
Normal file
50
ascii-art/blobs.py
Normal file
@ -0,0 +1,50 @@
|
||||
import random
|
||||
|
||||
width = 61
|
||||
lines = 8
|
||||
|
||||
char = 'o'
|
||||
space = ' '
|
||||
|
||||
ascii = ''
|
||||
|
||||
for line in range(lines):
|
||||
for x in range(width):
|
||||
if line == 0:
|
||||
ascii += char
|
||||
if line == 1:
|
||||
if x % 2 == 0:
|
||||
ascii += char
|
||||
else:
|
||||
ascii += space
|
||||
if line == 2:
|
||||
if x % 3 == 0:
|
||||
ascii += char
|
||||
else:
|
||||
ascii += space
|
||||
if line == 3:
|
||||
if x % 4 == 0:
|
||||
ascii += char
|
||||
else:
|
||||
ascii += space
|
||||
if line == 4:
|
||||
ascii += space
|
||||
if line == 5:
|
||||
if x % 2 == 0:
|
||||
ascii += char
|
||||
else:
|
||||
ascii += space
|
||||
if line == 6:
|
||||
if x % 4 == 0:
|
||||
ascii += char
|
||||
else:
|
||||
ascii += space
|
||||
if line == 7:
|
||||
if x % 5 == 0:
|
||||
ascii += char
|
||||
else:
|
||||
ascii += space
|
||||
|
||||
ascii += '\n'
|
||||
|
||||
print(ascii)
|
Loading…
Reference in New Issue
Block a user