Question: Exercise 1 Conditionals Exercise 1 Problem Use the variable x as you write this program. x will represent a positive integer. Write a program that

Exercise 1
Conditionals Exercise 1
Problem
Use the variable x as you write this program. x will represent a positive integer. Write a program that determines if x is between 0 and 25 or between 75 and 100. If yes, print the message:_ is between 0 and 25 or 75 and 100, where the blank would be the value of x. The program should do nothing if the value of x does not fit into either range.
Expected Output
If x is 8, then the output would be: 8 is between 0 and 25 or 75 and 100.
If x is 80, then the output would be: 80 is between 0 and 25 or 75 and 100.
If x is 50, then the output would be blank (your program does not print anything).
Important
The variable x is already declared for you. Please do not modify the code on lines 5 and 6.
Type Casting
TRY WITH X =8
Command was successfully executed.
TRY WITH X =80
TRY WITH X =50
Submit your code to be evaluated when ready. Remember, do not edit the code on lines 5 and 6.
########################################################
# Do not change the code on lines 5 and 6
########################################################
import sys
x = int(sys.argv[1])
########################################################
# Enter your code below
########################################################

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!