How to create, initialize and print the data structures list, dictionarie, tuple, and set in Python

1 Answer

0 votes
list_ = [1, 2, 3, 4, 5]
dictionary_ = {1: "python", 2: "c++", 3: "java"}
tuple_ = (1, 2, 3, 4)
set_ = {1, 2, 3, 4, 5, 6}

print("list:", list_)
print("dictionary:", dictionary_)
print("tuple:", tuple_)
print("set:", set_)


'''
run:

list: [1, 2, 3, 4, 5]
dictionary: {1: 'python', 2: 'c++', 3: 'java'}
tuple: (1, 2, 3, 4)
set: {1, 2, 3, 4, 5, 6}

'''

 



answered Jan 16, 2018 by avibootz

Related questions

1 answer 176 views
3 answers 320 views
1 answer 194 views
2 answers 230 views
4 answers 333 views
1 answer 138 views
1 answer 122 views
...