English

Consider a binary file, items.dat, containing records stored in the given format: {item_id: [item_name, amount]} Write a function, Copy_new(), that copies all records whose amount is greater than - Computer Science (Python)

Advertisements
Advertisements

Question

Consider a binary file, items.dat, containing records stored in the given format:

{item_id: [item_name, amount]}

Write a function, Copy_new(), that copies all records whose amount is greater than 1000 from items.dat to new_items.dat.

Code Writing

Solution

import pickle 
def Copy_new(): 
fr=open("items.dat","rb") 
fw=open("new_items.dat","wb") 
try: 
       while True: 
       irec=pickle.load(fr) 
       for k in irec: 
              if int(irec[k] [1]) > 1000: 
              pickle.dump(irec,fw) 
       except EOFError: 
       pass 
       fr.close() 
fw.close() 
shaalaa.com
  Is there an error in this question or solution?
2023-2024 (February) Set 4

APPEARS IN

Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×