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
3 new courses added, grab them fast
friends, please share our channel and website with your friends so that they can also get benefited
What will be the output of the following Python Code? func = lambda x: return x
print(func(2))
Anonymous Quiz
38%
SyntaxError
8%
x
19%
2.0
33%
2
2%
0
Which of these is not a core data type?
Anonymous Quiz
4%
Lists
12%
Dictionary
9%
Tuples
75%
Class
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