Question: Please Write In Python QUESTION 1 Write the code that completes the following tasks: Accepts the user input for an integer between 1 and 50
Please Write In Python
QUESTION 1
-
Write the code that completes the following tasks:
-
Accepts the user input for an integer between 1 and 50
-
Validate the input to see if it is a number and an integer.
-
Use a loop to calculate and display the factorial of that number. The factorial of a number is the product of all integers from 1 to that number.
-
Comment with description of what each statement does
-
QUESTION 2
-
Write the code that completes the following tasks:
- Get user input for the weekly number of hours a user has worked (expect a potential float input)
- Get the user input for the pay rate per hour (expect a potential float input)
- Validate the user input to ensure that the user has entered a positive number for the number of hours but no more than 60 hours.
- Calculate the weekly pay considering that the overtime pay at 1.5 hourly rate must be paid for any time worked over 40 hours a week.
- Comment with description of what each statement does
QUESTION 3
-
Write the code to complete the following tasks:
- In a loop, ask the user for input
- Output the value of the input in uppercase letters
- Keep asking for user input until the user types quit, stop, or exit
QUESTION 4
-
Write the code to complete the following tasks:
- You have 2 lists of strings with contents of your choice.
- Use a loop that goes through the lists and compares the lists elements and displays only the list elements that are duplicate (the element exists in both lists). The strings should be displayed even if in one is used uppercase and in the other lowercase or a combination of it.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
