Day 3: functions with inputs
Today, I practiced functions with inputs and learned the difference between
Parameters
def greet(a,b,c): # a, b, and c are the parameters
print(a)
print(b)
print(c)
Positional Arguments
greet(1,2,3) # 1, 2, and 3 are...
allienicole.hashnode.dev1 min read