Army Transportation and Aviation Logistics School Python Worksheet
Description
Submit 6 programs as separate Python files on Canvas
1. Using Python File window write a Python program that performs the following:
- (0) print the message This is Program 1
- (1) ask the user to enter his/her favorite color.
- (2) print the message I agree with you, if the entered color is blue.
- (3) say goodbye to the user by the end of the program (regardless of user input).
- (4) test your program two times with color blue and color is red. Did you get the expected output? Describe the expected answer and the obtained answer as a comment at the end of the program.
- (3) say goodbye to the user by the end of the program (regardless of user input).
- Describe the expected answer and the obtained answer as a comment at the end of the program.
2. Using Python File window write a Python program that performs the following:
- (0) print the message This is Program 2
- (1) ask the user to enter two integer numbers,
- (2) print the warning message you can’t divide by zero, if the second entered number (divisor) is 0.
- (2) print the result of division of these two numbers if it is possible (the second entered number is not 0).
3. Using Python File window write a Python program that performs the following:
- (1) ask the user to enter his/her name.
- (2) if the entered name is David, print the message Me too!;
- (3) if the entered name is Mary, print the message This is my wife name!;
- (4) Otherwise, print Hello, XXX! (XXX is the name entered by user).
- (5) test your program three times with input is David, Mary, Dan. Did you get the expected output? Describe the expected answer and the obtained answer as a comment at the end of the program.
4. Using Python File window write a Python program that performs the following:
- (1) ask the user to enter two different integer numbers.
- (2) compare the two entered numbers and print which number is larger.
- (3) say goodbye to the user by the end of the program (regardless of user input).
- test your program two times with input 9 and 4, and then 6 and 11 as shown below. Did you get the same output? Describe the expected answer and the obtained answer as a comment at the end of the program.
- Test your program two times with input 9, 4, and 10 and then 6, 12, and 11. Did you get the same output? Describe the expected answer and the obtained answer as a comment at the end of the program.
5. Write a program that asks the user to enter his/her test grade (A, B, C, D, or F).
- If the user gets A or B, print Good!;
- If the user gets C or D, print You can do better!;
- otherwise, print You need to catch up!.
Note that the if-elif-else structure and proper logical operator must be used (only one keyword if can be used in your program).
6. Write a Python program that first asks user to enter three numbers, respectively. Then, after certain comparisons, your program should print the largest number.
- Test your program two times with input 9, 4, and 10 and then 6, 12, and 11. Did you get the same output? Describe the expected answer and the obtained answer as a comment at the end of the program.
Have a similar assignment? "Place an order for your assignment and have exceptional work written by our team of experts, guaranteeing you A results."