notes
00_toolchain.md
01_introduction.py
02_controlFlow.py
03_functions.py
04_1_objectorientation.py
04_2_makingObjects.py
05_1_datastructures.py
05_2_usefulFunctions.py
06_io.py
07_importing.py
file.txt
kurstekst.txt
newFile.txt
requirements.txt
tempCodeRunnerFile.py
.gitignore
README.md
21 lines
331 B
Python
21 lines
331 B
Python
"""
|
|
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 |