rd
Size: a a a
rd
KJ
KJ
KJ
V
KJ
V
KJ
V
KJ
KJ
К
KJ
KJ
KJ
К
К
KJ
Python 2.7.16 (default, Apr 12 2019, 15:32:40)
[GCC 4.2.1 Compatible Apple LLVM 10.0.1 (clang-1001.0.46.3)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> max([1,2,3], 10)
[1, 2, 3]
>>> max([1,2,3], 10, "string")
'string'
M
>>> import sys
>>> sys.getsizeof([1,2,3])
96
>>> sys.getsizeof(10)
24
>>> sys.getsizeof("string")
43