DAY9

Modules

import math
math.sqrt(16)

Import Styles

import math as m
from math import sqrt

Custom Module

def add(a,b):
 return a+b

Main Guard

if __name__=="__main__":
 main()