Skip to content

Commit 0891450

Browse files
authored
Create bucket_list.py
1 parent 73fb6d8 commit 0891450

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

5-lists/bucket_list.py

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
things_to_do = [
2+
'🚀 Build a menaingful product for everyone.',
3+
'⛰ Try out hiking and mountain biking.',
4+
'🌏 Visit at least 10 countries in my lifetime.',
5+
'🎸 Produce an original song.',
6+
'📝 Write a short story.',
7+
'🏃 Finish a 10k marathon.'
8+
]
9+
10+
for thing in things_to_do:
11+
print(thing)

0 commit comments

Comments
 (0)