Python intro notes

This commit is contained in:
2019-09-27 00:06:03 +02:00
parent ea7fd79d11
commit c9cc068203
17 changed files with 471 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
"""
It is easier to reuse code and structure projects in multiple files.
"""
# We can import our own code
funcs = __import__("03_functions")
print("\n\n")
funcs.fancy_func(3)
print("\n\n")
import pandas
import numpy as np
print(np.pi)
from numpy import e
print(e)
# Libraries makes life easier, use pip for everything always