QZ
Size: a a a
QZ
$
V
$
А
$
V
VA
А
Д
py3
a = range(5)
b = range(5),
print(type(a), type(b))
print('в чем подвох?)')
<class 'range'> <class 'tuple'>
в чем подвох?)
$
V
А
V
VA
𝕬
py3
a = range(5)
b = range(5),
print(type(a), type(b))
print('в чем подвох?)')
<class 'range'> <class 'tuple'>
в чем подвох?)
$
AT
AT
А
python
print(type(()))
<class 'tuple'>
python3 assumed, other valid option is python2, you can be more specific next time.