Translate your pseudocode that’s down below into Python code….

Question Answered step-by-step Translate your pseudocode that’s down below into Python code…. Translate your pseudocode that’s down below  into Python code. Upload the .py file. # This program implements an if statement # Get a number from the usernumber = input(‘Enter a number: ‘) # Convert the number to a floatnumber = float(number) # If the number is greater than 50, print a messageif number > 50:  print(‘The number is greater than fifty’) # If the number is less than 50, print a messageif number < 50:  print('The number is less than fifty') # Doneprint('Done')  The program first gets a number from the user. It then converts the number to a float. If the number is greater than 50, it prints a message saying so. If the number is less than 50, it prints a message saying so. Finally, it prints 'Done'. Computer Science Engineering & Technology Python Programming COMPUTER 120 Share QuestionEmailCopy link Comments (0)