Skip to content

Instantly share code, notes, and snippets.

@Ventsislav-Yordanov
Created February 6, 2019 03:16
Show Gist options
  • Save Ventsislav-Yordanov/3527e349feb4aca57015f68e4a070b9f to your computer and use it in GitHub Desktop.
Save Ventsislav-Yordanov/3527e349feb4aca57015f68e4a070b9f to your computer and use it in GitHub Desktop.
numbers = (1, 2, 3)
numbers2 = 1, 2, 3
print(type(numbers))
print(type(numbers2))
print()
print(numbers)
print(numbers2)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment