1
0
forked from tdwojak/Python2017

commited tasks

This commit is contained in:
s45150 2017-12-02 15:46:33 +01:00
parent f7bd46129e
commit b8c22f98aa

View File

@ -1 +1,6 @@
import re
def _id(object):
return id(object)
print(_id(2))
print(_id("Ala ma kotA"))
print(_id([1, 3, 10]))