Question: def main ( ) : milesToKm ( ) FahToCel ( ) GalToLit ( ) def milesToKm ( ) : Invalid _ attempts = 0 while

def main ():
milesToKm()
FahToCel()
GalToLit()
def milesToKm ():
Invalid_attempts=0
while Invalid_attempts <3:
miles = float(input('Enter how many miles you want converted: '))
if miles <0:
print('You can not enter a negative number goodbye, William.')
Invalid_attempts=Invalid_attempts+1
else:
milesToKilometers = miles *1.6
print('William,', miles, 'Miles is equal to Kilometers:', format(milesToKilometers,',.2f'), "isn't that amazing!")
if Invalid_attempts==3:
print('you can not enter further data')
def FahToCel():
Invalid_attempts=0
while Invalid_attempts <3:
fahrenheit = float(input('William, Please enter the fahrenheit temperature you want converted: '))
if fahrenheit >1000:
print('You can not enter temp greater than 1000 goodbye, William.')
Invalid_attempts=Invalid_attempts+1
else:
fahrenheitToCelsius =(fahrenheit -32)*5/9
print('William,', fahrenheit, 'fahrenheit is equal to Celsius:', format(fahrenheitToCelsius,',.2f'), "isn't that amazing!")
if Invalid_attempts=3:
Data is passed from the function call in the main function to the function definition.The code block in the function definition should only calculate the conversion and display it.= #This program converts positive input of miles into Kilometers
#If input is negative three times in a row
#the program exits
def milesToKm (miles):
return miles *1.6
def main ():
Invalid_attempts=0
while Invalid_attempts <3:
miles = float(input('Enter how many miles you want converted: '))
if miles <0:
print('You can not enter a negative number goodbye, William.')
Invalid_attempts=Invalid_attempts+1
else:
milesToKilometers = milesToKm (miles)
print(miles,'miles is equal to ', format(milesToKilometers,',.2f'),'Kilometers' )
if Invalid_attempts==3:
print('you can not enter further data')
main()
Need Data to be passed from the function call in the main function to the function definition.The code block in the function definition should only calculate the conversion and display it. No use of Return/break/exit is allowed
This is the third time i ask this question. Please No use of Return/break/exit is allowed

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 Databases Questions!