Files
it_school/Python_module_1/python_012.py
Ionel Andrei Cataon f082bec56b
Some checks failed
It_School_001/pipeline/head Something is wrong with the build of this commit
update
2026-02-05 10:40:53 +02:00

20 lines
580 B
Python

#!/home/andrei/it_school/bin/python3
Tuplu = ("apa","paine","suc","fructe")
for i in Tuplu:
print(i)
print("--------")
mytuples = {"brand", "model", "year"}
for j in mytuples:
print(j)
print("--------")
Mydictionary = { "cetatentie": "roman", "datanasterii": "1 Oct 1996", "inaltime": 190}
print(Mydictionary)
print("--------")
for key, value in Mydictionary.items():
print(key, ";", value)
print("--------")
print ("Cetatentia e:", Mydictionary["cetatentie"])
print ("Data nasterii e:", Mydictionary["datanasterii"])
print ("Inaltimea e:", Mydictionary["inaltime"])