Get Mystery Box with random crypto!

Top Python Quiz Questions 🐍

Logo of telegram channel toppythonquizquestions — Top Python Quiz Questions 🐍 T
Logo of telegram channel toppythonquizquestions — Top Python Quiz Questions 🐍
Channel address: @toppythonquizquestions
Categories: Education
Language: English
Subscribers: 1.74K
Description from channel

🎓🔥💾 If you want to acquire a solid foundation in Python and/or your goal is to prepare for the exam, this channel is definitely for you.
🤳Feel free to contact us - @topProQ
And if you are interested in Java https://t.me/topJavaQuizQuestions

Ratings & Reviews

2.67

3 reviews

Reviews can be left only by registered users. All reviews are moderated by admins.

5 stars

1

4 stars

0

3 stars

0

2 stars

1

1 stars

1


The latest Messages 10

2021-04-21 13:31:24 Code snippet:
import turtle
t=turtle.Pen()
for i in range(0,4):
t.forward(100)
t.left(120)
248 views10:31
Open / Comment
2021-04-19 14:53:02 Code snippet:
f=lambda x:bool(x%2)
print(f(20), f(21))
237 views11:53
Open / Comment
2021-04-15 15:07:41 Code snippet:
class A:
def __init__(self):
self.__i = 1
self.j = 5

def display(self):
print(self.__i, self.j)
class B(A):
def __init__(self):
super().__init__()
self.__i = 2
self.j = 7
c = B()
c.display()
279 views12:07
Open / Comment
2021-04-12 14:15:32 Code snippet
x=100
def f1():
global x
x=90
def f2():
global x
x=80
print(x)
276 views11:15
Open / Comment
2021-04-06 13:31:25 Code snippet:
class A():
def disp(self):
print("A disp()")
class B(A):
pass
obj = B()
obj.disp()
317 views10:31
Open / Comment