1
0
forked from tdwojak/Python2017

changed file task 03

This commit is contained in:
s45156 2017-12-02 15:34:20 +01:00
parent 105364bf8f
commit 20d7685a3a
2 changed files with 11 additions and 0 deletions

11
labs03/task01.py Normal file
View File

@ -0,0 +1,11 @@
a = [1, 2, 3]
b = 123
c = 'ala ma kota'
d = 123.13113
d = 'kfidf'
print(id(a))
print(id(b))
print(id(c))
print(id(d))

0
labs03/task02.py Normal file
View File