Skip to content

Instantly share code, notes, and snippets.

@levlas
Created January 7, 2019 23:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save levlas/f4e4a40bff711cad3b1911037e43fea6 to your computer and use it in GitHub Desktop.
Save levlas/f4e4a40bff711cad3b1911037e43fea6 to your computer and use it in GitHub Desktop.
hands = [
['J', 'Q', 'K'],
['2', '2', '2'],
['6', 'A', 'K'],
]
my_slice = hands[1][1:]
my_slice[1] = 2
print(my_slice[0] * my_slice[1])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment