Quick actions

cmd+k|ctrl+k

Navigation

Languages

different between with tuple and string

Snippet info

Language

Python

Visibility

public

Author

hltse59

Created

2024-04-11T07:19:54.113604Z

Updated

2024-04-11T07:19:54.113604Z

thistuple = "apple",
print(type(thistuple))

thattuple ="apple"
print(type(thattuple))
INFO