Answered step by step
Verified Expert Solution
Question
1 Approved Answer
plz use python Write a program that asks the user to enter a line of integers corresponding to temperature values in C. You can assume
plz use python
Write a program that asks the user to enter a line of integers corresponding to temperature values in C. You can assume that the line will contain at least 1 integer value, and that the integer values will be separated by a comma (","). The program then prints out extreme temperatures in this line. A temperature is considered extreme if it is greater then or equal to 40C or less then or equal to 10C. The extreme temperature values are printed out on a single line, with a comma and a space (", ") separating each value. Note: - The output produced by the program must be in the format shown in the examples below, including the format of the prompt, spaces, and punctuation. - The output displays the values in ascending order. - There are no spaces in the input. - Useful methods: append (), split (), and join( )Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started