Python Hub
19.9K subscribers
80 photos
6 videos
14 files
207 links
๐Ÿ’ฌadmin @LinuxTeach๐Ÿ’ฌ
๐Ÿ‘‡ Free access to ๐Ÿ‘‡
1. Python Developer courses and Jobs
2. Machine Learning courses and Jobs
3. Direct Internship opportunities
4. Python free courses
๐Ÿ‘‡ Python Handwritten Notes ๐Ÿ‘‡
https://linktr.ee/python.hub
Download Telegram
These are some images from our Python Short Notes, if you want complete PDF of these notes click on this link==> https://pages.razorpay.com/pl_H7UoZ0SVnkC9pJ/view
>>> a = [1, 2, 3]
>>> b = a
>>> print(a is b, a == b)
Anonymous Quiz
6%
(False, False)
16%
(False, True)
13%
(True, False)
65%
(True, True)
>>> a = None
>>> L = [a] * 3
>>> print(L)
Anonymous Quiz
21%
Error
5%
[None, None]
67%
[None, None, None]
7%
None of above
>>> a, b = 100, 5
>>> print(a//b*a/b)
Anonymous Quiz
13%
1.0
15%
100.0
16%
200.0
56%
400.0
What will be the output of the following Python Code?
>>> print(55-20/5//4)
Anonymous Quiz
8%
0
19%
54
35%
54.0
31%
35.0
7%
34.0
In Python 3, what is the output of ยปยปยป print(type(range(5)))?
Anonymous Quiz
26%
<class 'int'>
18%
<class 'list'>
50%
<class 'range'>
5%
<class 'none'>
>>> a = ("p" * 2) * 3
>>> b = ("p" * 3) * 2
>>> print(a == b)
Anonymous Quiz
70%
True
19%
False
10%
Error
2%
None of above