Unit 6 Functions

Exercise 1: Write a program that has 1 function called info in a file called address.py that receives nothing and returns nothing; the function prints your name and fictitious address

Exercise 2: Write a program that has 1 function called schedule in a file called schedule.py that receives nothing and returns nothing; the function prints your name and school period and class names.

Exercise 3: Write a program that has 4 functions in a file called calc.py that receive 2 numbers and returns nothing; print the sum,difference,product and quotient in the function

Exercise 4: Write a program that has 4 functions in a file called calc2.py that receive 2 numbers and return the sum,difference,product and quotient. The main program prints the results of the function.

Exercise 5: Write a program that has 1 function in a file called grade.py that receives number grade 0 thru 100 and returns Pass if the grade is greater than or equal to 60, Fail when less than 60. The main program prints the results of the function.