WEEK 4:: PYTHON CRASH COURSE (LISTS/DICTIONARIES)

अब Quizwiz के साथ अपने होमवर्क और परीक्षाओं को एस करें!

What does the list "colors" contain after these commands are executed? colors = ["red", "white", "blue"] colors.insert(2, "yellow")

["red", "white", "yello", "blue"] (The insert command inserts the new element into the list at the specified index, shifting the other elements over afterwards.)

Use a list comprehension to create a list of squared numbers (n*n). The function receives the variables start and end, and returns a list of squares of consecutive numbers between start and end inclusively. For example, squares(2, 3) should return [4, 9].

def squares(start, end): return [ (i*i) for i in range(start,end+1) ] ----------------------- print(squares(2, 3)) # Should be [4, 9] print(squares(1, 5)) # Should be [1, 4, 9, 16, 25] print(squares(0, 10)) # Should be [0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100]

What do the following commands return? host_addresses = {"router": "192.168.1.1", "localhost": "127.0.0.1", "google": "8.8.8.8"} host_addresses.keys()

['router', 'localhost', 'google'] (in dictionaries, the keys() command returns a list of just the keys, which is what this is.)

Complete the code to iterate through the keys and values of the car_prices dictionary, printing out some information about each one.

def car_listing(car_prices): result = "" for cars in car_prices: result += "{} costs {} dollars".format(cars, car_prices[cars]) + "\n" return result ---------- print(car_listing({"Kia Soul":19000, "Lamborghini Diablo":55000, "Ford Fiesta":13000, "Toyota Prius":24000})) --------- Kia Soul costs 19000 dollars Lamborghini Diablo costs 55000 dollars Ford Fiesta costs 13000 dollars Toyota Prius costs 24000 dollars

Taylor and Rory are hosting a party. They sent out invitations, and each one collected responses into dictionaries, with names of their friends and how many guests each friend is bringing. Each dictionary is a partial list, but Rory's list has more current information about the number of guests. Fill in the blanks to combine both dictionaries into one, with each friend listed only once, and the number of guests from Rory's dictionary taking precedence, if a name is included in both dictionaries. Then print the resulting dictionary.

def combine_guests(guests1, guests2): # Combine both dictionaries into one, with each key listed # only once, and the value from guests1 taking precedence guests2.update (guests1) return guests2 ---------------------------- Rorys_guests = { "Adam":2, "Brenda":3, "David":1, "Jose":3, "Charlotte":2, "Terry":1, "Robert":4} Taylors_guests = { "David":4, "Nancy":1, "Robert":2, "Adam":1, "Samantha":3, "Chris":5} ------------ {'David': 1, 'Nancy': 1, 'Robert': 4, 'Adam': 2, 'Samantha': 3, 'Chris': 5, 'Brenda': 3, 'Jose': 3, 'Charlotte': 2, 'Terry': 1}

A professor with two assistants, Jamie and Drew, wants an attendance list of the students, in the order that they arrived in the classroom. Drew was the first one to note which students arrived, and then Jamie took over. After the class, they each entered their lists into the computer and emailed them to the professor, who needs to combine them into one, in the order of each student's arrival. Jamie emailed a follow-up, saying that her list is in reverse order. Complete the steps to combine them into one list as follows: the contents of Drew's list, followed by Jamie's list in reverse order, to get an accurate list of the students as they arrived.

def combine_lists(list1, list2): # Generate a new list containing the elements of list2 # Followed by the elements of list1 in reverse order new_list = list2 # Iterate till 1st element and keep on decrementing i for names in reversed (range(len(list1))): new_list.append(list1[names]) return new_list Jamies_list = ["Alice", "Cindy", "Bobby", "Jan", "Peter"] Drews_list = ["Mike", "Carol", "Greg", "Marcia"] print(combine_lists(Jamies_list, Drews_list))

Use a dictionary to count the frequency of letters in the input string. Only letters should be counted, not blank spaces, numbers, or punctuation. Upper case should be considered the same as lower case. For example, count_letters("This is a sentence.") should return {'t': 2, 'h': 1, 'i': 2, 's': 3, 'a': 1, 'e': 3, 'n': 2, 'c': 1}. 1 / 1 point

def count_letters(text): result = {} text = text.lower() # Go through each letter in the text for letter in text.lower(): # Check if the letter needs to be counted or not if letter .isalpha() and letter not in result: result[letter] = text.lower().count(letter) # Add or increment the value in the dictionary return result -------------------- print(count_letters("AaBbCc")) # Should be {'a': 2, 'b': 2, 'c': 2} print(count_letters("Math is fun! 2+2=4")) # Should be {'m': 1, 'a': 1, 't': 1, 'h': 1, 'i': 1, 's': 1, 'f': 1, 'u': 1, 'n': 1} print(count_letters("This is a sentence.")) # Should be {'t': 2, 'h': 1, 'i': 2, 's': 3, 'a': 1, 'e': 3, 'n': 2, 'c': 1}

The format_address function separates out parts of the address string into new strings: house_number and street_name, and returns: "house number X on street named Y". The format of the input string is: numeric house number, followed by the street name which may contain numbers, but never by themselves, and could be several words long. For example, "123 Main Street", "1001 1st Ave", or "55 North Center Drive". Fill in the gaps to complete this function.

def format_address(address_string): # Declare variables number = "" address = "" # Separate the address string into parts adds1 = address_string.split() # Traverse through the address parts for i in adds1: # Determine if the address part is the # house number or part of the street name if i.isdigit(): number = i else: address += i address += ' ' # Does anything else need to be done # before returning the result? # Return the formatted string return "house number {} on street named {}".format(number, address) ---------------- print(format_address("123 Main Street")) # Should print: "house number 123 on street named Main Street" print(format_address("1001 1st Ave")) # Should print: "house number 1001 on street named 1st Ave" print(format_address("55 North Center Drive")) # Should print "house number 55 on street named North Center Drive"

The highlight_word function changes the given word in a sentence to its upper-case version. For example, highlight_word("Have a nice day", "nice") returns "Have a NICE day". Can you write this function in just one line?

def highlight_word(sentence, word): return(sentence.replace(word, word.upper())) ------------------------- print(highlight_word("Have a nice day", "nice")) print(highlight_word("Shhh, don't be so loud!", "loud")) print(highlight_word("Automating with Python is fun", "fun"))

What do the following commands return when animal = "Hippopotamus"? >>>print(animal[3:6]) >>> print(animal[-5]) >>> print(animal[10:])

pop, t, us (When both parts of a string index range are included, the substring starts at first index and ends at second index minus 1. When the index is negative, the character is counted from the end of the string. When the second index is omitted, it goes until the end of the string.)


संबंधित स्टडी सेट्स

JS Arrays, Modern JavaScript & a little TypeScript Execute Program

View Set

Chapter 1- Legal environment of business

View Set

Chapter 04: Developing the Role of Manager

View Set

Chapter 24: Nursing Care of the Child With an Integumentary Disorder (and alteration in tissue integrity)

View Set

Neuroplasticity and its Effects on the Brain

View Set

Finance 2303 Exam 1-- Chapters 1-4

View Set

Accounting activities for chpt. #1-2

View Set