Added missing files and removed unnessesary ones
This commit is contained in:
C++
Python
clock
pyqt6_4
pyton_test
soper
sql
SQL
16
Python/pyton_test/task3.py
Normal file
16
Python/pyton_test/task3.py
Normal file
@ -0,0 +1,16 @@
|
||||
a = {
|
||||
12: 30,
|
||||
30: 40,
|
||||
50: 60,
|
||||
70: 80,
|
||||
}
|
||||
# Вар 1
|
||||
for key, value in a.items():
|
||||
print(a)
|
||||
|
||||
# Вар 2
|
||||
for key in a:
|
||||
print(key)
|
||||
|
||||
for value in a.values():
|
||||
print(value)
|
Reference in New Issue
Block a user