update
Some checks failed
It_School_001/pipeline/head Something is wrong with the build of this commit

This commit is contained in:
Ionel Andrei Cataon
2026-02-05 10:40:53 +02:00
parent 2d3f686918
commit f082bec56b
13 changed files with 228 additions and 5 deletions

View File

@@ -0,0 +1,19 @@
#!/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"])