Day 18 was where I finally learned what a tuple is and we played a bit with how modules can be imported.
https://twitter.com/Magneet_nl/status/1352148670679027712
Notes
more explanations import can use from module import * # Very bad coding practise! use alias import turtle as t tuple like a list but ordered tuple = (1, 3, 8) tuple[2] shows 3 comparable to a list but immutable
