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
What will be the output of the following Python function? πŸ–₯οΈπŸ§ πŸ€”

min(max(False,-3,-4), 2,7)
Anonymous Quiz
11%
-4
17%
-3
15%
2
56%
False
Are you a Student?πŸ€”πŸ§ 
Anonymous Poll
85%
Yes
15%
No
Do you want Coding Internship?πŸ€”
Anonymous Poll
89%
Yes, I want😍
11%
NoπŸ˜”
Here is the link to Apply for Paid Internship πŸ‘‡πŸ‘‡πŸ‘‡ πŸ˜πŸ‘‡πŸ‘‡πŸ‘‡

https://www.codingninjas.com/codestudio/contests/codekaze?utm_source=instagram_sanskar&utm_medium=sanskar2&utm_campaign=codekaze22
Who developed python programming language?
Anonymous Poll
17%
Wick van Rossum
9%
Rasmus lerdorf
71%
Guide van Rossum
3%
Niene stom
Want Coding Courses for free?😱🧠

Register & get: https://bit.ly/GrandContest2022-LSV
What will be the output of the following Python code?πŸ€”πŸ–₯️🧠

l=[1, 0, 2, 0, 'hello', '', []] list(filter(bool, l))
Anonymous Quiz
21%
a) [1, 0, 2, β€˜hello’, ”, []] 
35%
b) Error
30%
c) [1, 2, β€˜hello’] 
14%
d) [1, 0, 2, 0, β€˜hello’, ”, []] 
Register for coding competition and get internship and job opportunities πŸ‘‡πŸ‘‡πŸ‘‡

https://bit.ly/GrandContest2022-LSV
What will be the output of the following Python function?πŸ€”πŸ–₯️🧠

min(max(False,-3,-4), 2,7)
Anonymous Quiz
9%
a) -4
15%
b) -3
16%
c) 2
60%
d) False
What will be the output of the following Python code?πŸ€”πŸ–₯️🧠
print("Hello {0[0]} and {0[1]}".format(('foo', 'bin')))
Anonymous Quiz
26%
Hello (β€˜foo’, β€˜bin’) and (β€˜foo’, β€˜bin’)
18%
Error
47%
Hello foo and bin
10%
None of the mentioned
What will be the output of the following Python code snippet?πŸ€”πŸ–₯️🧠
for i in [1, 2, 3, 4][::-1]: print (i)
Anonymous Quiz
63%
4 3 2 1
15%
error
14%
1 2 3 4
8%
none of the mentioned
What will be the output of the following Python function?πŸ€”πŸ–₯️🧠
len(["hello",2, 4, 6])
Anonymous Quiz
24%
Error
9%
6
57%
4
10%
3
What will be the output of the following Python code?πŸ€”πŸ–₯️🧠
x = 'abcd'
for i in range(len(x)): print(i)
Anonymous Quiz
14%
error
21%
1 2 3 4
29%
a b c d
36%
0 1 2 3
Python supports the creation of anonymous functions at runtime, using a construct called __________πŸ€”πŸ–₯️🧠
Anonymous Quiz
14%
pi
23%
anonymous
57%
lambda
5%
none of the mentioned
What will be the output of the following Python code?πŸ€”πŸ–₯️🧠
print(0xA + 0xB + 0xC)
Anonymous Quiz
29%
0xA0xB0xC
36%
Error
12%
0x22
23%
33
What will be the output of the following Python code?πŸ€”πŸ–₯️🧠
>>>example = "snow world"
>>>example[3] = 's' >>>print example
Anonymous Quiz
15%
snow
31%
snow world
53%
Error
What will be the output of the following Python code?πŸ€”πŸ–₯️🧠

True = False while True: print(True) break
Anonymous Quiz
26%
True
33%
False
23%
None
18%
none of the mentioned