Write a Python program that takes a string as an input where multiple numbers are separated by hashes(#). Your first task is to create a list of numbers and print it. Your second task is to create a dictionary that will have the index of the list as key, and for the even indices, multiplication from start to that index as value, while for the odd indices, summation from start to that index as value. Finally, print the dictionary. Sample Input 1: 1#2#3#4 Sample Output 1: [1, 2, 3, 4] {0: 1, 1: 3, 2: 6, 3: 10} Explanation 1: key 0 key 1 key 2 key 3 value 1 value 1+2 = 3 %3D value 1x2x3 = 6 value 1+2+3+4 = 10 %3D Sample Input 2: 5#6#7 Sample Output 2: [5, 6, 7] {0: 5, 1: 11, 2: 210} Explanation 2: key 0 key 1 key 2 - value 5x6x7 = 210 value 5 value 5+6 = 11 %3D II II II II II II II II II II II II II II II II

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter18: Stacks And Queues
Section: Chapter Questions
Problem 16PE: The implementation of a queue in an array, as given in this chapter, uses the variable count to...
icon
Related questions
Question

Please Answer it within 30 minutes

Write a Python program that takes a string as an input
where multiple
numbers are separated by hashes(#). Your first task is to
create a list of
numbers and print it.
Your second task is to create a dictionary that will have the
index of the
list as key, and for the even indices, multiplication from
start to that
index as value, while for the odd indices, summation from
start to that
index as value. Finally, print the dictionary.
Sample Input 1:
1#2#3#4
Sample Output 1:
[1, 2, 3, 4]
{0: 1, 1: 3, 2: 6, 3: 10}
Explanation 1:
key 0
key 1
key 2
key 3
value 1
value 1+2 = 3
value 1x2x3 = 6
value 1+2+3+4 = 10
Sample Input 2:
5#6#7
Sample Output 2:
[5, 6, 7]
{0: 5, 1: 11, 2: 210}
Explanation 2:
key 0 – value 5
key 1
key 2 - value 5x6x7 = 210
value 5+6 = 11
II
II
II
II
II
II
II
II
II
II
II
II
II
II
II
Transcribed Image Text:Write a Python program that takes a string as an input where multiple numbers are separated by hashes(#). Your first task is to create a list of numbers and print it. Your second task is to create a dictionary that will have the index of the list as key, and for the even indices, multiplication from start to that index as value, while for the odd indices, summation from start to that index as value. Finally, print the dictionary. Sample Input 1: 1#2#3#4 Sample Output 1: [1, 2, 3, 4] {0: 1, 1: 3, 2: 6, 3: 10} Explanation 1: key 0 key 1 key 2 key 3 value 1 value 1+2 = 3 value 1x2x3 = 6 value 1+2+3+4 = 10 Sample Input 2: 5#6#7 Sample Output 2: [5, 6, 7] {0: 5, 1: 11, 2: 210} Explanation 2: key 0 – value 5 key 1 key 2 - value 5x6x7 = 210 value 5+6 = 11 II II II II II II II II II II II II II II II
Expert Solution
steps

Step by step

Solved in 4 steps with 6 images

Blurred answer
Knowledge Booster
Mergesort
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning