
please write programs for these questions
Part 1
1. Write a Python program that prompts the user for a series of integers and
stores in a list only the values between 1-100, and displays the resulting list.
2. Write a Python program that prompts the user for a list of integers and stores
them in a list. For all values that are greater than 100, the string 'over'
should be stored instead. The program should display the resulting list.
3. Write a Python program that prompts the user to enter a list of names and
stores them in a list. The program should display how many times the letter 'a'
appears within the list.
4. Write a program that accepts a comma separated sequence of words as input
and prints the words in a sequence after sorting them alphabetically.
Suppose the following input is supplied to the program:
without, hello, bag, world
Then, the output should be:
bag, hello, without, world
5. Write a Python program that prompts the user to enter integer values to
populate two lists, then print messages to determine the following:
(a) Whether the lists are of the same length.
(b) Whether the elements in each list sum to the same value.
(c) Whether there are any values that occur in both lists.
Part 2 (Optional)
1. Create a program that picks a winner for a contest or prize draw. The program
should prompt for the names of the entrants and their contact details (address,
mobile no etc.) until the user enters a blank string. Then select a winner at
random and print their details. This is showcased in the demo program called
coin_change included in last week’s sample code.
b) Add a text based menu to the program with two initial options:
Add Contestant or Quit with the relevant functions.
c) Add a menu option that allows users to view the current list of contests.
d) Add a menu option that allows users to delete contestants.
Part 3
1. Write a Python function called add_daily_temp that is given a (possibly
empty) dictionary meant to hold the average daily temperature for each day of
the week, a temperature value, and the day of the week for the recorded
temperature. The function should then add the temperature to the dictionary
only if it does not already contain a temperature for that day. The function
should return the resulting dictionary, whether it is updated or not.
2. Write a Python function named moderate_days that is given a dictionary
containing the average daily temperature for each of the days of a week and
returns a list of the days in which the average was between 70 and 79 degrees.
3. Write a Python function named get_daily_temps that prompts the user
for the average temperature for each day of the week and returns a dictionary
containing the information the user entered.
4. Write a Python function named get_weekend_average_temp that is
passed a dictionary of daily temperatures and returns the average temperature
over the weekend for the weekly temperatures given.
5. Write a Python function named add_vegetable that is passed a (possible
empty) set of vegetable names and raises a ValueError exception if the given
vegetable is already in the set, otherwise, add the vegetable and return a new set.
6. Write a Python function named num_vowels_consonants that is passed
a string containing letters, each of which may be in either upper or lower case
and returns how many vowels and consonants the string contains.
Part 4 (Optional)
Write a program that creates and stores student grades.
Your program should start by asking users whether they would like to add or
view stored grades. If the user selects the first option, they should be repeatedly
prompted for the names and module results (4CS001, 4CS015 and 4CI018) of
students until the users enters a blank string, storing the information in a
dictionary, before writing the data to a text file in JSON or CSV format.
If the user selects to view student grades, any data stored in the results file
should be read, loaded into a dictionary and presented to the user.
Make sure to validate all inputs and utilise exception handling to avoid crashes.

Trending nowThis is a popular solution!
Step by stepSolved in 7 steps with 3 images

- 121: Write a Python program that prompts the user to enter 3 numbers, store these numbers in a list, and then calculate the average of the numbers stored in the list. Your average calcualtion cose should work for any number of items in the list (Hint: use the len() method)arrow_forwardPlease send me answer of this question immediately and i will give you like sure sirarrow_forwardWrite the code in python Design a problem that asks user to enter a series of 6 numbers. The program should store the numbers in a list then display the following data: The lowest number in the list The highest number in the list The total of numbers in the list The average of the numbers in the list.arrow_forward
- Write in Python: (1) Prompt the user to enter four numbers, each corresponding to a person's weight in pounds. Store all weights in a list. Output the list. Ex: Enter weight 1: 236.0 Enter weight 2: 89.5 Enter weight 3: 176.0 Enter weight 4: 166.3 Weights: [236.0, 89.5, 176.0, 166.3] (2) Output the average of the list's elements with two digits after the decimal point. Hint: Use a conversion specifier to output with a certain number of digits after the decimal point. (3) Output the max list element with two digits after the decimal point. Ex: Enter weight 1: 236.0 Enter weight 2: 89.5 Enter weight 3: 176.0 Enter weight 4: 166.3 Weights: [236.0, 89.5, 176.0, 166.3] Average weight: 166.95 Max weight: 236.00 (4) Prompt the user for a number between 1 and 4. Output the weight at the user specified location and the corresponding value in kilograms. 1 kilogram is equal to 2.2 pounds. Ex: Enter a list location (1 - 4): 3 Weight in pounds: 176.00 Weight in kilograms: 80.00 (5) Sort the…arrow_forwardA program in javaarrow_forwardthe volume of traded Apple stocks during February and March 2022. The dates are in ascending order with their respective trade volumes.Input:Write a Python program that reads the data of the dates and stock volumesinto two separate lists.Output:The program must display the dates having the maximum and minimumtrading volume of each month. In addition, the program must display the whole trade volume, average trade volume for each month and shows the month that Apple has a higher trading volume.Sample Output:___________ has the maximum trade volume of ______________ in February.___________ has the minimum trade volume of ______________ in February.___________ has the maximum trade volume of _____________ in March.___________ has the minimum trade volume of ______________in March.The whole trade volume of these two months is ______________.The average trade volume of February is ______________.The average trade volume of March is ______________.AAPL has higher trading volume in…arrow_forward
- Create a program that generates an eight-digit account number. The program should generate eight random numbers, each in the range of 0 to 9, and assign each number to a list element. Then write another loop that displays the entire contents of the list without the []. use pythonarrow_forwardpython LAB: Subtracting list elements from max When analyzing data sets, such as data for human heights or for human weights, a common step is to adjust the data. This can be done by normalizing to values between 0 and 1, or throwing away outliers. Write a program that adjusts a list of values by subtracting each value from the maximum value in the list. The input begins with an integer indicating the number of integers that follow.arrow_forwardhow to code this in python Enter weight 1: 236.0 Enter weight 2: 89.5 Enter weight 3: 176.0 Enter weight 4: 166.3 Weights: [236.0, 89.5, 176.0, 166.3] Average weight: 166.95 Max weight: 236.00 Enter a list location (1 - 4): 3 Weight in pounds: 176.00 Weight in kilograms: 80.00 Sorted list: [89.5, 166.3, 176.0, 236.0] Weight on Earth: [89.5, 166.3, 176.0, 236.0] Weight on Mars: [33.9, 62.9, 66.6, 89.3]arrow_forward
- Please help me with this in python. I have attached question and output below.arrow_forwardWrite a program in python that allows the user to enter the total rainfall amounts from your home town for each of 12 months of 2020 into a list. (Use whatever numbers you want) Display the month and the rainfall amounts. The program should calculate and display the total rainfall amount for the year and the average monthly rainfall, Be sure to identify the amounts displayed. Also determine and display the months with the highest and lowest rainfall amounts. When displaying the months with the highest and lowest rainfall, use a string method to display just the first three letters of the months with the highest and lowest rain amounts. REMEMBER to put comments, and write comments through both programs (file creation program, and display program) telling what the program is doing.arrow_forwardAssume, you have been given two lists: List_one and List_two. [Your program should work for any two given lists; change the following lists and check whether your program works correctly for the code you have written] Write a Python program that prints "True", if the given two lists have at least one common member. Otherwise, print "False". Hint: use a boolean variable as a flag to indicate if the two lists have at least one common element. Use break to end the loop when seeing a commom element. =================================================================== Given lists 1:List_one : [1, 4, 3, 2, 6]List_two : [5, 6, 9, 8, 7] Sample Output 1:True =================================================================== Given lists 2:List_one : [1, 4, 3, 2, 5]List_two : [8, 7, 6, 9] Sample Output 2:False #assign the boolean result (True/False) to variable "common_ele" (flag). def task5(list_1, list_2): # YOUR CODE HERE return common_ele Expert Solutionarrow_forward
- Database System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- C How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education





