Answered step by step
Verified Expert Solution
Question
1 Approved Answer
please help me with these coding questions Retype the below code. Fix the indentation as necessary to make the program work. if 'New York' in
please help me with these coding questions
Retype the below code. Fix the indentation as necessary to make the program work. if 'New York' in temperatures: if temperatures ['New York'] >90 : print('The city is melting!') else: print( f "The temperature in New York is \{temperatures ['New York']\}.") print('The temperature in New York is unknown. ') Sample output with input: 105 The city is melting! Code writing challenge activity deme X Testing with input: 50 Output differs. See highlights below. Your output Expected output Primary U.S, interstate highways are numbered 1-99. Odd numbers (like the 5 or 95 ) go north/south, and evens (like the 10 or 90 ) go east/west. Auxillary highways are numbered 100-999, and service the primary highway indicated by the rightmost two digits. Thus, I-405 services 1-5, and 1-290 services 1-90. Note: 200 is not a valid auxiliary highway because 00 is not a valid primary highway number Given a highway number, indicate whether it is a primary or auxiliary highway. If auxiliary, indicate what primary highway it serves Also indicate if the (primary) highway runs north/south or east/west. Ex. If the input is. 90 the output is: Ex If the input is: 290 the output is: I-290 in auxi11ary, serving I-90, going east/west. Ex. If the input is: the output is: Ex: If the input is: 200 the output is: 200 is not a valid interstate highway number. See Wikipedia for more info on highway numbering. A year in the modem Gregorian Calendar consists of 365 days In reality, the earth takes longer to rotate around the sum . To account for the difference in time every 4 years, a leap year takes place. A leap year is when a year has 366 days An extra day, February 29 th. The requirements for a given year to be a leap year are 1) The year must be divisible by 4 2) If the year is a century year (1700, 1800, etc), the year must be evenly divisible by 400 , therefore, both 1700 and 1800 are not leap years Som example leap years are 1600,1712 , and 2016 Write a program that takes in a year and determines whether that year is a leap year Ex. If the input is: 1712 the output is: 1712 - leap year Ex: If the input is: 1913 the output is: 1913 - not a leap year 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