Channel Avatar

Prasad Python Tech @UCjD1lLz6AF0qkLgOwPXrZ7w@youtube.com

1K subscribers - no pronouns :c

technology


Welcoem to posts!!

in the future - u will be able to do some more stuff here,,,!! like pat catgirl- i mean um yeah... for now u can only see others's posts :c

Prasad Python Tech
Posted 1 year ago

#DailyChallenge!
#What will be printed?
nums = [1,2,3,4,5]
for i in nums:
i += 1
print(nums)

3 - 1

Prasad Python Tech
Posted 1 year ago

#DailyChallenge..!
What will be printed?
N = 0.1 + 0.2
print(N)

9 - 1

Prasad Python Tech
Posted 1 year ago

#DailyChallenge!!
Name = "Prasad"
List_name = list(Name)
List_name.append(Name)
print (List_name)

8 - 1

Prasad Python Tech
Posted 1 year ago

#DailyChallenge...!!

What will be printed?

nums = [2, 5, 10, 20]
nums[1] = 3
print(nums)

3 - 1

Prasad Python Tech
Posted 1 year ago

What will be printed?
A = {1, 3, 5}
B = {2, 4, 6}

print(A & (A | B))

3 - 1

Prasad Python Tech
Posted 1 year ago

What will be printed?

Nums_list = [1, 2, 3, 4]
Nums_list[::-1].append(5)
print(Nums_list)

5 - 4

Prasad Python Tech
Posted 1 year ago

What will be printed?

Nums = [0, 1, 2, 3, 4]

print (Nums[None:None])

3 - 1