-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathascii_art.py
More file actions
57 lines (57 loc) · 780 Bytes
/
ascii_art.py
File metadata and controls
57 lines (57 loc) · 780 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# Snowman ASCII Art stages
STAGES = [
# Stage 0: Full snowman
"""
___
/___\\
(o o)
( > )
( : )
( : )
""",
# Stage 1: Bottom ball starts melting
"""
___
/___\\
(o o)
( > )
( : )
~
""",
# Stage 2: Bottom ball melted
"""
___
/___\\
(o o)
( > )
~~
""",
# Stage 3: Middle ball melting
"""
___
/___\\
(o o)
~~~
""",
# Stage 4: Only head with hat
"""
___
/___\\
(o o)
""",
# Stage 5: Hat melting
"""
___
/___\\
( . )
""",
# Stage 6: Almost gone
"""
___
~~~
""",
# Stage 7: Completely melted
"""
~~~
"""
]