Quick actions

cmd+k|ctrl+k

Navigation

Languages

set

Snippet info

Language

Python

Visibility

public

Author

hltse59

Created

2024-04-11T07:43:02.469323Z

Updated

2024-04-11T08:11:29.042856Z

thisset = {"apple", "banana", "cherry", True, 1, 2}
print("The length of thisset = ", len(thisset),"\n")

for this in thisset:
    print(this)
INFO