
In Python:
Write a for loop to print each contact in contact_emails.
Sample output with inputs: 'Alf' 'alf1@hmail.com'
mike.filt@bmail.com is Mike Filt
s.reyn@email.com is Sue Reyn
narty042@nmail.com is Nate Arty
alf1@hmail.com is Alf
My code so far:
contact_emails = {
'Sue Reyn' : 's.reyn@email.com',
'Mike Filt': 'mike.filt@bmail.com',
'Nate Arty': 'narty042@nmail.com'
}
new_contact = input()
new_email = input()
contact_emails[new_contact] = new_email
for new_contact in contact_emails:
print('{} is {}'.format(new_email, contact_emails[new_contact]))
However it is giving me the wrong output:
alf1@hmail.com is s.reyn@email.com
alf1@hmail.com is mike.filt@bmail.com
alf1@hmail.com is narty042@nmail.com
alf1@hmail.com is alf1@hmail.com
I dont understand how to separate the contact_names from the contact_emails in the same list.

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

- Write a loop that prints each country's population in country_pop.Sample output with input:'China:1365830000,India:1247220000,United States:318463000,Indonesia:252164800':United States has 318463000 people. India has 1247220000 people. Indonesia has 252164800 people. China has 1365830000 people. I need to define "pop" that is in the hardcoded print statement. Adding another loop does not address this problem it produces a NameError. I can not change the print statement it is preprogrammed into the example. I can only add the definition of 'pop' to the example.arrow_forwardCode in Pythonarrow_forwardInteger userNum is read from input. Write a while loop that sums all integers read from input until the integer 1 is read. Integer 1 should not be included in the sum. Ex: If the input is 33 -4 -10 -35 1, then the output is: -16 1 #include 2 using namespace std; 3 4 int main() { 5 6 7 8 9 10 11 12 13 14 15 16 17 int userNum; int result; result = 0; cin >> userNum; while(userNum>0) { } result+=userNum; cin>>userNum; cout << result << endl;arrow_forward
- Given positive integer num_insects, write a while loop that prints, then doubles, num_insects each iteration. Print values ≤ 100. Follow each number with a space.Sample output with input: 88 16 32 64 this is what I have so far: num_insects = int(input()) # Must be >= 1 while num_insects <= 100:print(num_insects, end= ' ')num_insects *= 2 but its not workingarrow_forwardwrite an algorithm code it in Python Tuition Fees Increase In 2008, BC charged $115 per credit for a course. BC announced it would increase its cost per credit by 4% each year for the next five years. Write a program that uses a for loop to display the projected rates for the next five years as follows: Year Cost per Credit -------------------------- 2008 $115.00 2009 $119.60 2010 $124.38 2011 $129.36 2012 $134.53 2013 $139.92 ============================================================================ Pay attention to the spacing/alignment in your output. Review the Formatting Output in Python documentation in order to properly format the numerical values in your output. The output should present with two decimal places. Include your algorithm as section comments in your Python code. Upload the Python (*.py) file here.arrow_forwardUsing a Counter-Controlled whileLoop Summary In this lab, you use a counter-controlled while loop in a Java program provided for you. When completed, the program should print the numbers 0 through 10, along with their values multiplied by 2 and by 10. The data file contains the necessary variable declarations and some output statements. Instructions Ensure the file named Multiply.java is open. Write a counter-controlled while loop that uses the loop control variable to take on the values 0 through 10. Remember to initialize the loop control variable before the program enters the loop. In the body of the loop, multiply the value of the loop control variable by 2 and by 10. Remember to change the value of the loop control variable in the body of the loop. Execute the program by clicking Run. Record the output of this program.arrow_forward
- USING C++ PLEASE CREATE THREE FILES! IntCollection.h (or IntCollection.hpp): class definition IntCollection.cpp: class implementation main.cpp, including sample output and your answer to question 6 at the bottom. : main program to run the code The following code creates an IntCollection object named ‘c’. It adds seven integers to ‘c’, then uses a for loop to display the seven integers: int main() { IntCollection c; c.add(45); c.add(-210); c.add(77); c.add(2); c.add(-21); c.add(42); c.add(7); for (int i = 0; i < c.getSize(); i++) { cout << c.get(i) << endl; } } For this assignment you will add a copy constructor, a destructor, and three overloaded operators to the IntCollection class. In the design diagram below, the black member functions represent code that has already been implemented. You will be implementing the green items. Each item that you will be adding to the class is described below the diagram. private: int size // the number of ints currently stored in…arrow_forwardcreate a new file in c++. In this lab, you will add some more functionality to the program. Use loops to keep running the program until the user chooses the exit condition (X or x). When dividing, use a loop to validate user input, making sure the denominator (second number) is not zero. If the user enters a 0 for the second number, display an error message and ask them again. A) Add two numbersB) Subtract two numbersC) Multiply two numbersD) Divide two numbersX) Exit program The program should: display a "hello" message before presenting the menu display the menu prompt user for selection accept either uppercase or lowercase for selection display error message if invalid selection is made (example: E) display the selection back to the user prompt for two numbers perform the operation and display the results use loop for input validation of second number during division display error message for division when second number is 0 after displaying result, use loop to…arrow_forward1. Create a C program that prompts the user to input a number and prints its corresponding multiplication equivalent in a multiplication table. Use nested for loop only. Sample Output: I CAUsers\delNDesktop\c\prelim\multiplicaitontable.exe Input upto the table number starting from 1: 10 Multiplication table from 1 to 10 1x1 = 1, 2x1 = 2, 3x1 = 3, 4x1 - 4, 5x1 - 5, 6x1 = 6, 7x1 = 7, 8x1 = 8, 9x1 = 9, 10x1 = 10 1x2 = 2, 2x2 = 4, 3x2 - 6, 4x2 = 8, 5x2 = 10, 6x2 = 12, 7x2 = 14, 8x2 = 16, 9x2 = 18, 10x2 = 20 1x3 3, 2x3 = 6, 3x3 = 9, 4x3 = 12, 5x3 = 15, 6x3 = 18, 7x3 = 21, 8x3 = 24, 9x3 = 27, 10x3 = 30 1x4 = 4, 2x4 = 8, 3x4 = 12, 4x4 = 16, 5x4 = 20, 6x4 = 24, 7x4 = 28, 8x4 = 32, 9x4 = 36, 10x4 = 40 1x5 = 5, 2x5 = 10, 3x5 = 15, 4x5 = 20, 5x5 = 25, 6x5 = 30, 7x5 = 35, 8x5 = 40, 9x5 = 45, 10x5 = 50 1x6 = 6, 2x6 = 12, 3x6 = 18, 4x6 = 24, 5x6 = 30, 6x6 = 36, 7x6 = 42, 8x6 = 48, 9x6 = 54, 1ex6 = 60 1x7 = 7, 2x7 = 14, 3x7 = 21, 4x7 = 28, 5x7 = 35, 6x7 = 42, 7x7 = 49, 8x7 = 56, 9x7 = 63, 10x7 = 70…arrow_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





