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 173 views
3 answers 318 views
1 answer 189 views
2 answers 227 views
4 answers 329 views
1 answer 136 views
1 answer 119 views
...