
def sum_list(numbers):
total=0
for i in numbers:
total+=i
return total
def get_string_lengths(strings):
return [len(i) for i in strings]
def get_names():
names=[]
name=input('Enter a name, STOP to stop: ')
while name!='STOP':
names.append(name)
name=input('Enter a name, STOP to stop: ')
return names
if __name__=='__main__':
kitties=["Jules","Stubby","Tyball","Scooter","KC","Garfield","Bucky"]
print('There are {} letters in
kitties.'.format(sum_list(get_string_lengths(kitties))))
puppers=["Charlie","Chuck","Chuckadero","Char","Charmander","Charles,
Lord of Hearts, King of snuggles"]
print('There are {} letters in
puppers.'.format(sum_list(get_string_lengths(puppers))))
print('There are {} letters in the names you
entered.'.format(sum_list(get_string_lengths(get_names()))))
![Python 3 O Help File Edit View Insert Cell Kernel Widgets Trusted In [8] def sum_list(numbers) total-0 for i in numbers: tota](http://img.homeworklib.com/questions/b01f4430-a149-11ea-a715-47c3c5b478c7.png?x-oss-process=image/resize,w_560)
It's in Python 3. Please make sure it displays correct strings lenght And displays correct character...
Finish the given ProcessFile.java program that prompts the user for a filename and reprompts if file doesn’t exist. You will process through the file skipping any text or real (double) numbers. You will print the max, min, sum, count, and average of the integers in the file. You will want to create test files that contain integers, doubles, and Strings. HINT: Use hasNextInt() method and while loop. You may also want to use Integer.MAX_VALUE and Integer.MIN_VALUE for the initialization of...
python code:
Task 1: Write a Python program that takes as input from the user the name of a file containing postcode/location information. Each line in the file consists of the postcode followed by a tab followed by a comma-separated list of locations that have that postcode. For example, the file Small.txt contains: 3015 Newport,South Kingsville,Spotswood 3016 Williamstown 3018 Altona,Seaholme 3019 3021 Albanvale,Kealba,Kings Park,St Albans Braybrook, Robinson Your program should create a list of postcode/location pairs with each pair stored...
Using Java Create an application that creates and displays a list of names using an array. Then modify the application to create and use a list of numbers. Console for the names application Please enter a name or type “exit” to quit: Diane Please enter a name or type “exit” to quit: Joe Please enter a name or type “exit” to quit: Greta Please enter a name or type “exit” to quit: Henry Please enter a name or type “exit”...
Could anyone please help with this Python code assignment? In this programming assignment you are to create a program called numstat.py that reads a series of integer numbers from a file and determines and displays the following: The name of the file. The sum of the numbers. The count of how many numbers are in the file. The average of the numbers. The average is the sum of the numbers divided by how many there are. The maximum value. The...
Python Error: Writing a program to complete the following: Prompt the user for the name of an input file. Open that file for input. (reading) Read the file using a "for line in a file" loop For each line, o print the line and compute and print the average word length for that line. Close the input file Sample output: MY CODE IS WRONG AND NEED HELP CORRECTING IT!!! ------------------------------------------------------------------------------------------------------------------------ DESIRED OUTPUT: Enter input file name: Seasons.txt Thirty days hath September...
Need help with the code for this assignment. Python Assignment: List and Tuples We will do some basic data analysis on information stored in external files. GirNames.txt contains a list of the 200 most popular names given to girls born in US from year 2000 thru 2009: (copy link and create a txt file): https://docs.google.com/document/d/11YCVqVTrzqQgp2xJqyqPruGtlyxs2X3DFWn1YUb3ddw/edit?usp=sharing BoyNames.txt contains a list of the 200 most popular names given to boys born in US from year 2000 thru 2009 (copy link and create...
Python code. No use of def() or return.
7a)Create a program that asks the user for their full name (first, middle, and last). You can assume that compound names, such as Jamie-Lynn are joined by a hyphen, that names are separated by a space and that the user enters their data in the correct format. The program should then separate the first name, middle name, and last name from the single string entered by the user and save each piece...
Write a C++ code to make a simple program that imports the input
file in and gets the results as specified
Please follow the instructions and paste the code below as the
answer with a screenshot of the output to prove it worked.
Input file ->
https://www.dropbox.com/s/444jofkchu6ylwr/names.txt?dl=0
Scoring Names You will be using the provided names.txt file, text file containing over five-thousand first names, and you will calculate a score for each name. Begin by reading the names from the...
PYTHON The provided code in the ATM program is incomplete. Complete the run method of the ATM class. The program should display a message that the police will be called after a user has had three successive failures. The program should also shut down the bank when this happens. [comment]: <> (The ATM program allows a user an indefinite number of attempts to log in. Fix the program so that it displays a message that the police will be called...
Write a Python program to create userids: You work for a small company that keeps the following information about its clients: • first name • last name • a user code assigned by your company. The information is stored in a file clients.txt with the information for each client on one line (last name first), with commas between the parts. In the clients.txt file is: Jones, Sally,00345 Lin,Nenya,00548 Fule,A,00000 Your job is to create a program assign usernames for a...