06 Mar PMCA Sunday 16:00 Python Homework 20.03.01.
Question: Use TKinter to create 6 buttons as following picture: ...
Question: Use TKinter to create 6 buttons as following picture: ...
Question: You’re on a long car trip and arrive at a gas station. It’s 200 km to the next station. Write a program to figure out if you need to buy gas here, or if you can wait for the next station. Input Specification: The program should ask the question,...
Question: Create the following * pattern image base on your input Sample Input 1: 3 Sample Output 1: * ** *** *** ** * Sample Input 2: 5 Sample Output 2: * ** *** **** ***** ***** **** *** ** *...
Problem DescriptionYou have been asked to take a small icon that appears on the screen of a smart telephone and scale it up so it looks bigger on a regular computer screen. The icon will be encoded as characters (x and *) in a 3 ×...
Question: Create the following * pattern image base on your input Sample Input 1: 3 Sample Output 1: * ** *** *** ** * Sample Input 2: 5 Sample Output 2: * ** *** **** ***** ***** **** *** ** *...
Problem Description Text messaging using a cell phone is popular among teenagers. The messages can appear peculiar because short forms and symbols are used to abbreviate messages and hence reduce typing. For example, “LOL” means “laughing out loud” and “:-)” is called an emoticon which looks like...
Question: Make a list by taking 10 input from user. Now delete all repeated elements of the list. Sample Input: 1,2,3,2,1,3,12,12,32 Sample Output: 1,2,3,12,32...
Question: Create the following * pattern image base on your input Sample Input 1: 3 Sample Output 1: * ** *** *** ** * Sample Input 2: 5 Sample Output 2: * ** *** **** ***** ***** **** *** ** * ...
Question: Write a program to ask the user for five names. The program should store the names in a list, and print them all out at the end. It should look something like this: Sample input: Enter 5 names: Tony Paul Nick Michel Kevin Sample output: The names are Tony, Paul, Nick, Michel, Kevin Hint: You can...
Question 1: A soccer team is looking for girls from ages 10 to 12 to play on their team. Write a program to ask the user’s age and if male or female (using “m” or “f”). Display a message indicating whether the person is eligible to play on the team. Sample Input...