#1.C помощью литерала:
d = {}
print(d)
input()
#выведет: {}
d = {'dict': 1, 'dictionary': 2}
print(d)
input()
#выведет: {'dict': 1, 'dictionary': 2}
#2.C помощью функции dict:
d = dict(short='dict', long='dictionary')
print(d)
input()
#выведет: {'short': 'dict', 'long': 'dictionary'}
d = dict([(2, 1), (5, 6)])
print(d)
input()
#выведет: {2: 1, 5: 6}
#3.C помощью метода fromkeys:
d = dict.fromkeys(['a', 'b'])
print(d)
input()
#выведет: {'a': None, 'b': None}
d = dict.fromkeys(['a', 'b'], 100)
print(d)
input()
#выведет: {'a': 100, 'b': 100}
#4.C помощью генераторов словарей
d = {a: a ** 2 for a in range(7)}
print(d)
input()
#выведет:{0: 0, 1: 1, 2: 4, 3: 9, 4: 16, 5: 25, 6: 36}
dict = {
"apple" : "яблоко",
"bold" : "жирный",
"bus" : "автобус",
"cat" : "кошка",
"car" : "автомобиль"}
print(dict["bus"])
input()
# выведет: автобус
dict = {
"apple" : "яблоко",
"bold" : "жирный",
"bus" : "автобус",
"cat" : "кошка",
"car" : "автомобиль"}
for item in dict:
print(item, " => ", dict[item])
input()
# выведет:
apple => яблоко
bold => жирный
bus => автобус
cat => кошка
car => автомобиль