Skip to content

Instantly share code, notes, and snippets.

@Celia-code
Created May 4, 2020 11:28
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 Celia-code/1d15a38e6a0b9c6de6efcc6219fc4a5e to your computer and use it in GitHub Desktop.
Save Celia-code/1d15a38e6a0b9c6de6efcc6219fc4a5e to your computer and use it in GitHub Desktop.
元組
aTuple = ('Amy',18)
name,age = aTuple
print(name)
print(age)
# 打印出 Amy
# 打印出 18
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment