Computer Science, asked by Vikuu503, 7 months ago

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 anonymouslygreat
0

Answer:

try this

with open("cinema.dat") as f:

d = dict(f)

?

Similar questions