Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Systems A Practical Approach To Design Implementation And Management

Authors: THOMAS CONNOLLY

6th Edition

9353438918, 978-9353438913

More Books

Students also viewed these Databases questions

Question

Complete the implementation of the ArrayOrderedList class.

Answered: 1 week ago

Question

What is the purpose of the Salary Structure Table?

Answered: 1 week ago

Question

What is the scope and use of a Job Family Table?

Answered: 1 week ago