Skip to content

Instantly share code, notes, and snippets.

@Celia-code
Created May 4, 2020 11:11
Embed
What would you like to do?
元組
aList = [1,2,3]
aTuple = tuple(aList)
print(aTuple)
# 打印出 (1, 2, 3)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment