Advertisement
SEHardwick

Ian Code

Jun 16th, 2021
982
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.45 KB | None | 0 0
  1. source = [9,8,"h",2,3,3,33,"tr",0,"e",133,"v","cs",1,"l",
  2.             1,8,9,"j",3,3,"l","o",00,98,"i","ap","d",0,
  3.             "ti",1,11,"a","rt",76,76,"d",19]
  4. key = [9,8,2,3,"j",3,3,"pt","uu",00,98,"i","ap","rrr",0,
  5.             "ti",1,11,66,1,2,"rt",76,76,"po",19,3,33,"tr",
  6.             0,13,1,"v","cs",1,1,8,9,133]
  7. answer = []
  8.  
  9. def ian_code():
  10.     for items in source:
  11.         if items not in key:
  12.             answer.append(items)
  13.  
  14. print(ian_code())
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement