Question: Use Python to write a program that does the following: Takes in two variables (one for numbers and one for text arguments) Then checks if
Use Python to write a program that does the following:
Takes in two variables (one for numbers and one for text arguments)
Then checks if the first argument is greater than 100, it prints out "pass", if less than 100, it prints out "fail"
If equal to 100 (print out any text of your choice) and if text, prints out "invalid"
For the second argument if it is text it prints out "valid", if it is not text it does nothing.
Then run the function once with any choice of text, number input (examples below).
func(15,word) ===> fail, "valid"
func(15,28) ===> fail
func(word,28) ===> "invalid"
func(word,word) ===> "invalid", "valid"
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
