watwatwat

Untitled

Feb 18th, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.11 KB | None | 0 0
  1. empty = []
  2. empty.append("Value")
  3. print(empty) # ['Value']
  4.  
  5. empty.pop(0) # index, not value
  6. print(empty) # []
Add Comment
Please, Sign In to add comment