Channel Avatar

coding by preet @UCLL619MuBz9bQvij4DGoKQw@youtube.com

366 subscribers - no pronouns :c

Welcome to coding by preet I'm Python trainer with a passio


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

coding by preet
Posted 1 month ago

What will the following code print?
for i in range(3):
print(i, end=", ")

1 - 0

coding by preet
Posted 5 months ago

10 - 0

coding by preet
Posted 5 months ago

print(3 * "abc")

3 - 0

coding by preet
Posted 5 months ago

Which of the following methods can be used to convert a string to a list in Python?

1 - 0

coding by preet
Posted 5 months ago

my_list = [1, 2, 3]
my_list.insert(0, 4)
print(my_list)

3 - 0

coding by preet
Posted 5 months ago

def fun(a, b=2, c=3):
return a + b + c

print(fun(1, c=4))

4 - 1

coding by preet
Posted 5 months ago

How can you add an item to a list in Python?

4 - 0

coding by preet
Posted 5 months ago

x = "Python"
print(x[1:4])

3 - 0

coding by preet
Posted 5 months ago

What does the len() function do in Python?

15 - 0

coding by preet
Posted 5 months ago

Which of the following is a valid variable name in Python?

2 - 0