>>> list1 = [11, 2, 23]
>>> list2 = [2, 11, 23]
>>> print(list1 == list2)
>>> list2 = [2, 11, 23]
>>> print(list1 == list2)
Anonymous Quiz
14%
Error
31%
True
52%
False
3%
None of the above
Transfer Files using Python 👇
https://www.thepythoncode.com/article/send-receive-files-using-sockets-python
https://www.thepythoncode.com/article/send-receive-files-using-sockets-python
Fruit and Vegetable detection using Python 👇👆
https://github.com/shubhampokhrel81/Fruits-and-Vegetable-Recognition-System-using-CNN
https://github.com/shubhampokhrel81/Fruits-and-Vegetable-Recognition-System-using-CNN
>>> def unpack(p, q, r, s):
print(p+s)
>>> a = [1, 2, 3, 4] >>> unpack(a)
print(p+s)
>>> a = [1, 2, 3, 4] >>> unpack(a)
Anonymous Quiz
9%
7
46%
5
35%
Error
10%
None of the above
>>> x = ['python', 'hub']
>>> x.sort(key = len)
>>> print(x)
>>> x.sort(key = len)
>>> print(x)
Anonymous Quiz
42%
['hub', 'python']
30%
['python', 'hub']
20%
Error
8%
None of the above