•I Have Python Real Time Experience.

•Channel Name Changed As Python In Telugu

•This Channel Will Grab Your Internal Thinking Power. So Don't Think So Much Subscribe Now 👆


Python In Telugu

What will be the output of this code?
x = (i*i for i in range(3))
print(next(x))
print(next(x))
print(sum(x))

5 months ago | [YT] | 0

Python In Telugu

What is the output of the following?
a = (1, 2, 3)
a[0] = 4

5 months ago | [YT] | 0

Python In Telugu

What will be the output?
def func(a, L=[]):
L.append(a)
return L

print(func(1))
print(func(2))
print(func(3))

5 months ago | [YT] | 0

Python In Telugu

What is the output of the following code?
x = [[0]*3]*3
x[0][0] = 1
print(x)

5 months ago | [YT] | 0

Python In Telugu

What is the output of this code?
print(bool("False"))

5 months ago | [YT] | 0

Python In Telugu

What is the output of the code below?
x = [1, 2, 3]
print(x * 2)

5 months ago | [YT] | 0

Python In Telugu

What is the output of the following code?

print(type([]) is list)

5 months ago | [YT] | 0

Python In Telugu

Guess the ouput
set1 = {"Yellow", "Orange", "Black"}
set2 = {"Orange", "Blue", "Pink"}

set3 = set2.difference(set1)
print(set3)

8 months ago | [YT] | 0

Python In Telugu

Guess the output
set1 = {"Yellow", "Orange", "Black"}
set2 = {"Orange", "Blue", "Pink"}

set1.difference_update(set2)
print(set1)

8 months ago | [YT] | 0

Python In Telugu

What is the output of the following print() function
print(sep='--', 'Ben', 25, 'California')

8 months ago | [YT] | 0