ANSWERS 2026 STUDY GUIDE FULL
SOLUTION VIEW AHEAD
●● print(my_name.upper()).
Answer: Converts string into upper case & converts it to new string
●● Import required packages:
pandas, numpy, matplotlib.pylab with aliases pd, np, plt, respectively.
Answer: import pandas as pd
import numpy as mp
import matplotlib.pylab as plt
●● Create a list with 5 prime numbers.
Answer: prime_numbers[2, 3, 5, 7, 11]
●● The code to print the third prime number in a list
prime_numbers=[2, 3, 5, 7, 11].
Answer: prime_numbers[2]
, output: 5
●● Write the code to print the sum of the 2nd and 4th prime number in a
list
prime_numbers=[2, 3, 5, 7, 11].
Answer: prime_numbers[1] + prime_numbers[3]
output: 10
●● Write the code that outputs the sum of the first 5 prime numbers
prime_numbers=[2, 3, 5, 7, 11].
Answer: sum(prime_numbers[0:5])
output: 18
●● Write a code to print the value responding to key, name.
Answer: my_profile["name"]
output: Breena
●● Define a dictionary with keys: name, password, birth_month, email,
major. Name it my_profile..