Skip to content

Instantly share code, notes, and snippets.

View dmelisab's full-sized avatar

dmelisab dmelisab

View GitHub Profile
my_info = {'name': 'Cansel',
'email': 'asdf@sth',
'adres': {'Ankara': 'Çankıya', 'istanbul': 'Pendik', 'is': 'Maltepe'}}
my_info["adres"]["istanbul"]
sports = {
1: "Voleybol",
2: "Basketbol",
3: "Tenis",
4: "Yüzme",
5: "Futbol"
}
copy_sports = sports.copy()
copy_sports[6] = "Oryantiring"
dictionary = {"good":"buono/a", "bad":"cattivo"}
dictionary2 = {"beautiful":"bello/a", "ugly":"brutto/a", "tall":"alto/a"}
dictionary.update(dictionary2)
print(dictionary)
print(dictionary2)
dictionary
#a very small English-Italian dictionary with few elements :)
dictionary = {"good":"buono/a", "bad":"cattivo", "beautiful":"bello/a", "ugly":"brutto/a", "tall":"alto/a"}
if "short" not in dictionary.keys():
dictionary["short"] = "corto/a"
dictionary
months = {
1: "January",
2: "February",
3: "Blank",
4: "April",
5: "March",
6: "June"
}
del months
months
months = {
1: "January",
2: "February",
3: "Blank",
4: "April",
5: "March",
6: "June"
}
del months["2"]
months = {
1: "January",
2: "February",
3: "Blank",
4: "April",
5: "March",
6: "June"
}
months.update({5:"March", 5:"May"})
months = {
1: "January",
2: "February",
3: "Blank",
4: "April",
5: "March",
6: "June"
}
months[7] = "July"
months = {
1: "January",
2: "February",
3: "March",
4: "April",
5: "May",
6: "June"
}