Advertisement
M4tthew27

Untitled

May 21st, 2024 (edited)
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.08 KB | None | 0 0
  1. a = []
  2. a.append(['12', 2, 'True', 4])
  3. b = a[0][2]
  4. a[0].remove(b)
  5. print(a)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement