Channel Avatar

Magno Efren @UCBwN7Z5LWQAJ_6ueSEzDtGQ@youtube.com

11K subscribers - no pronouns :c

BIENVENIDOS ! La tecnología es apasionante 😎🚀


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

Magno Efren
Posted 1 month ago

¿Cuál es el resultado del siguiente código Python?
x, y = 2,3
y, x = x, y
print(x**y)

24 - 1

Magno Efren
Posted 1 month ago

¿Cuál es el resultado del siguiente código Python?
print(()!= () !={})

14 - 0

Magno Efren
Posted 1 month ago

¿Cuál es el resultado del siguiente código Python?
x = [1, 2, 3]
print(x[::-1])

69 - 0

Magno Efren
Posted 2 months ago

¿Cuál es el resultado del siguiente código Python?
a = 1
b = "10"
print(a*b)

29 - 4

Magno Efren
Posted 2 months ago

¿Cuál es el resultado del siguiente código Python?

x = [1, 2, 3]
x.append([4, 5])
print(len(x))

11 - 2

Magno Efren
Posted 2 months ago

¿Cuál es el resultado del siguiente código Python?
a = 16
b = 9
print(a > b and b < a or a == b)

21 - 1

Magno Efren
Posted 2 months ago

¿Cuál es el resultado del siguiente código Python?
x = "1\t1"
print(x*2)

34 - 3