๐Ÿ“ฆCreating a Package with Relative ImportsWORKSHOP
1
2
3
4
5

Step 1

Explore the basics of `import` and `from ... import`. Write code that imports `math` and uses `math.sqrt`, `math.ceil`, and `math.pi`. Then use `from math import` to import `factorial` and `gcd` directly. Also alias `statistics` as `stats` and print the mean of a list.

โŒ˜ Enter (Mac) ยท Ctrl+Enter (Win/Linux)