fun modules in python code example
Example 1: cool python imports
import antigravity
Example 2: functions in python
def hello():
print("hello")
"""To make a function, it needs def then nameOfFunction() and a : to
make the function work, you don't need a closing tag, as long as there is
tabbed section."""
def add(a, b):
c = a + b
return c
"""What the function above does is you input 2 numbers, and then it returns
go 70 + 30, as the function returned 30 because the inputs were 10 and 20."""
"""Functions can be called by code, as long as the function has already
been defined. Hope this helped you in your python journey!"""
Example 3: modules in python
import random
r = random.randint(1,10)
from random import randint
r = randint(1,10)
from random import *
r = randint(1,10)
Example 4: modules in python
import pandas as pd:
Example 5: functions in python
def myfunc():
a = 'This is a func'
myfunc()
print(myfunc())
Example 6: cool python imports
import this