Python Hub
19.2K subscribers
83 photos
6 videos
14 files
210 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
Free for 2 days from now
Python Hub pinned Deleted message
»»» aList = [5, 10, 15, 25]
»»» print(aList[::-2])
Anonymous Quiz
25%
[15, 10, 5]
20%
[10, 5]
27%
[25, 10]
8%
[25, 10, 5]
19%
Error
>>> d = {"p":1, "q":2, "r":3}
>>> print("p" in d)
Anonymous Quiz
53%
True
11%
False
32%
Error, in operator not supported for dictionaries in Python
3%
None
>>> a="2"
>>> b="2"
>>> a+b
Anonymous Quiz
59%
'22'
15%
'4'
13%
4
13%
Error
>>> tup = ("1234")
>>> print(type(tup))
Anonymous Quiz
34%
tuple
55%
string
4%
None
7%
Error
print('python' > 'java')
Anonymous Quiz
61%
True
14%
False
20%
Error
5%
None of above