Question: Create one python file, with the following: Numeric Data Type 1. The program will ask the user to input integers for x and y in

Create one python file, with the following: Numeric Data Type 1. The program will ask the user to input integers for x and y in this math expression: x % 3+y/2 Print the results. ex: if x=3 and y=4, then the result is 2 2. Then, the program will ask the user for exponential number to find 3^expo print the results. ex: if expo=2, then the results is 9. Note, expo in the above is the variable name that will accept the user input. Strings Data Type: 3. In the same python file, write an expression that will ask the user for first and last name. concatenate the first letter of the first name with the last name and print out this message: Your Username is: Also, print the length of the lastname ex: firstName=joe, lastName=doe, then the results is: Your Username is: jdoe Last name length: 3 4. Create a dictionary for the 12 months numbers and full month name. Request user input for a month number and print out the full name of the month. Note a dictionary must be created. Functions: 5. Create a function that prints out the sum of 29, 48 and 3
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
