Advertisement
Guest User

help me

a guest
Dec 15th, 2019
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. #Joseph Hoang
  2. #1162876
  3. #Problem set 1
  4.  
  5. #files
  6. TEA_TEXT = open('tea.txt', 'r')
  7. TEA_LINES_LIST = TEA_TEXT.readlines()
  8. TEA_TEXT.close()
  9.  
  10.  
  11. DICT = {}
  12. TEA_INFO = []
  13. for LIST in TEA_LINES_LIST:
  14. LIST.rstrip('\n')
  15.  
  16.  
  17.  
  18.  
  19.  
  20. print (TEA_LINES_LIST)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement