Channel Avatar

The Programmers Realm @[email protected]

1.3K subscribers - no pronouns :c

Welcome to The Programmers Realm! 🚀 Dive into the world of


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

The Programmers Realm
Posted 6 months ago

What will be the output of this Python code?
x = [1, 2, 3]
y = x + [4]
print(x, y)

4 - 0

The Programmers Realm
Posted 6 months ago

I'M BACK!!! (Hopefully...) I have some more videos cooking up behind the scenes. Few big changes in my personal life too, so I had a four month hiatus. Now, something important since I'm wanting feedback:
*Should I use music in shorts or not?*

If you have any further feedback, leave a comment on this post! 🚀

2 - 1

The Programmers Realm
Posted 10 months ago

a = {1, 2, 3}
b = {2, 3, 4}
print(a & b)

6 - 0

The Programmers Realm
Posted 10 months ago

What will be the output of the following Python code?
a = [1, 2]
b = a
a += [3]
print(b)

6 - 0

The Programmers Realm
Posted 10 months ago

Maybe a bit trickier this time: What's the output of this python code?
x = [1, 2, 3]
y = x
x = [4, 5, 6]
y.append(7)
print(y)

7 - 0

The Programmers Realm
Posted 10 months ago

I'm interested: What would you consider your Python skills like?

4 - 0

The Programmers Realm
Posted 10 months ago

How do you add an element to the end of a list in Python?
my_list = [1, 2, 3, 4, 5]

9 - 0

The Programmers Realm
Posted 10 months ago

What are the two main loop types in Python?

1 - 0

The Programmers Realm
Posted 10 months ago

Python: What type of data structure are these?
1. ["one", "two", "three"]
2. ("four", "five", "six")
3. {"seven", "eight", "nine"}

1 - 0