Advertisement
Guest User

Untitled

a guest
Aug 18th, 2021
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. for i in range (WALL_LEN):
  2. if "marked_as_ads" in (wall[i]):
  3. del (wall[i])["marked_as_ads"]
  4.  
  5. if "post_type" in (wall[i]):
  6. del (wall[i])["post_type"]
  7.  
  8. if "date" in (wall[i]):
  9. del (wall[i])["date"]
  10.  
  11. if "copy_history" in (wall[i]):
  12. del (wall[i])["copy_history"]
  13.  
  14. if "post_source" in (wall[i]):
  15. del (wall[i])["post_source"]
  16.  
  17. if "comments" in (wall[i]):
  18. del (wall[i])["comments"]
  19.  
  20. if "likes" in (wall[i]):
  21. del (wall[i])["likes"]
  22.  
  23. if "reposts" in (wall[i]):
  24. del (wall[i])["reposts"]
  25.  
  26. if "views" in (wall[i]):
  27. del (wall[i])["views"]
  28.  
  29. if "is_favorite" in (wall[i]):
  30. del (wall[i])["is_favorite"]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement