Write a method in Python to read the binary file "cinema.dat" which contains a dictionary MOVIE with the following keys: Moviename,Movieno,movietype
Answers
Answered by
0
Answer:
try this
with open("cinema.dat") as f:
d = dict(f)
?
Similar questions