Computer Science, asked by priyakeerthana21, 9 months ago

Write a python program to multiply all the values by two in a dictionary

Answers

Answered by jyotirawat83
1

Answer:

1. Declare and initialize a dictionary to have some key-value pairs.

2. Initialize a variable that should contain the total multiplied value to 1.

3. Use the for loop to traverse through the values of the dictionary.

4. Then multiply all the values in the dictionary against each other.

5. Print the total multiplied value.

6. Exit.

Similar questions