d = {}
name = input("Enter your name : ")
age = int(input("Enter your age : "))
fav_movie = input("Enter the name of your favourite movies separated by comma : ").split(',')
fav_song = input("Enter the name of your favourite songs separated by comma : ").split(',')
d = dict(name = name, age= age, fav_movie = fav_movie, fav_song = fav_song)
for i, j in d.items():
print(f"The key is {i} for which the value is {j}")