Question: Write a Python program that combines the given four dictionaries into a single new dictionary. Sample Input: student_dic 1 = {1:, Ranvir Singh, 2: Sukhdeep

Write a Python program that combines the given four dictionaries into a single new dictionary. Sample Input: student_dic 1 = {1:", Ranvir Singh", 2: "Sukhdeep Singh", 3:"Manpreet Kaur"} student_dic2={4:"Amreen Kaur", 5:"Jin Chan"} student dic3={6:"Umber Jan", 7:"Jingze Dai"} student_dic4={8:"Komal Kaur"} Sample Output 1: student_dic={1:", Ranvir Singh", 2: "Sukhdeep Singh", 3:"Manpreet Kaur", 4:"Amreen Kaur", 5:"Jin Chan", 6:"Umber Jan", 7:"Jingze Dai", 8:"Komal Kaur"}
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
