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 code snippet? πŸ–₯οΈπŸ€”πŸ§ 

--> print(2**3 + (5 + 6)**(1 + 1))
Anonymous Quiz
64%
129
8%
8
14%
121
14%
None of the above
What will be the output of this program? -- print(int(6 == 6.0) * 3 + 4 % 5) πŸ’»πŸ€”πŸ§ 
Anonymous Quiz
19%
22
28%
18
15%
20
38%
7
What will be the output of this program?🧠πŸ–₯οΈπŸ€”
--> print(max("zoo 145 com"))
Anonymous Quiz
30%
142
21%
122
9%
a
39%
z
What will be the output of this program ?πŸ€”πŸ§ πŸ–₯️
--> print("java", 'point', sep='2')
Anonymous Quiz
35%
javapoint2
10%
japoint
49%
java2point
5%
javapoin2
What will be the output of the following code snippet?πŸ–₯οΈπŸ§ πŸ€”

a = [1, 2] print(a * 3)
Anonymous Quiz
23%
Error
6%
[1,2]
6%
[1,2,1,2]
65%
[1,2,1,2,1,2]
What will be the output of the following code snippet?πŸ€”πŸ–₯️🧠

-> s = {1, 2, 3, 3, 2, 4, 5, 5} print(s)
Anonymous Quiz
32%
{1,2,2,3,3,4,5,5}
53%
{1,2,3,4,5}
4%
{1,5}
12%
None of the above
Hello Friends, do you want paid Internship with stipend upto Rs. 15k or $200 per month?πŸ€”πŸ§ 

Then Register here: https://bit.ly/34zUjnQ
Guys this don't take this lightly, its a Golden opportunity & also you will be getting Free Amazon Voucher worth Rs. 1000!😱
what datatype are the *args stored, when passed into a function? πŸ§ πŸ€”πŸ–₯️
Anonymous Quiz
32%
Lists
32%
Tuples
22%
Dictionaries
14%
None
What is the output of the following code? πŸ€”πŸ–₯️🧠

eval(''1 + 3 * 2'')
Anonymous Quiz
9%
'1+6'
9%
'4*2'
32%
'1+3*2'
49%
7
Want to learn Python for free?πŸ§ πŸ’»

Join free Python Masterclass!πŸ‘‡

https://www.madridsoftwaretrainings.com/python-course-training-in-delhi
What will be the output of this function? πŸ€”πŸ–₯️🧠
all([2,4,0,6])
Anonymous Quiz
28%
False
39%
True
14%
0
18%
None
What will be the output of this program?πŸ§ πŸ€”πŸ–₯️

int1 = 0b0010 print(int1)
Anonymous Quiz
32%
0b0010
33%
2
22%
NameError: name '0b0010' is not defined
13%
SyntaxError
Your dream career is just a few steps away!🧠

πŸ˜±β€’ Get upto 100% Scholarship on India's highest rated coding courses!

πŸ’»β€’ Learn Data Structures, C++, Java, Python, Web Dev, Data Science and other highly sought after skills from IIT and Stanford Alumni.

πŸš€β€’ Get Interview preparation book & Christmas hampers worth Rs. 2000 for free on course enrollment!

Apply Now : https://bit.ly/3LAZSmO

Use code : INSTA50 to get 50% off and then you have to pay only Rs. 48, not even $1 & Rs 50πŸ˜³πŸš€
PVM is often called _________?πŸ§ πŸ€”πŸ–₯️
Anonymous Quiz
11%
Python interpreter
4%
Python compiler
18%
Python volatile machine
67%
Portable virtual machine
What is the maximum possible length of an identifier?πŸ€”πŸ§ πŸ–₯️
Anonymous Quiz
20%
31
27%
63
19%
79
34%
None of the above
Which of the following statements is valid for "if statement"?🧠πŸ–₯οΈπŸ€”
Anonymous Quiz
62%
if f >= 12:
24%
if (f >= 122)
10%
if (f => 1222)
4%
if f >= 12222
Which of the following blocks allows you to test the code blocks for errors?πŸ–₯οΈπŸ§ πŸ€”
Anonymous Quiz
29%
except block
52%
try block
10%
finally block
9%
None of these
What will be the output of the following code snippet? 🧠πŸ–₯οΈπŸ€”

- example = ["Sunday", "Monday", "Tuesday", "Wednesday"]; - print(example[-3:-1])
Anonymous Quiz
44%
['Monday', 'Tuesday']
13%
['Sunday', 'Monday']
18%
['Tuesday', 'Wednesday']
24%
['Wednesday', 'Monday']