Channel Avatar

Shorts_Code @UC9Io8EFfhJcusC1b4ErEECw@youtube.com

54 subscribers - no pronouns :c

*Welcome to 🚀🚀Shorts_Code!!!* Dive into the world of codi


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

Shorts_Code
Posted 18 hours ago

Which of the following correctly checks the data type of a variable in Python?

0 - 0

Shorts_Code
Posted 1 day ago

Which keyword is used to create an anonymous function in Python?

3 - 0

Shorts_Code
Posted 2 days ago

What is the output of the following code?

print("Hello\nWorld!")

0 - 0

Shorts_Code
Posted 3 days ago

What is the correct file extension for Python files?

1 - 0

Shorts_Code
Posted 4 days ago

Which method is not used to create a new instance of a class in Python?

1 - 0

Shorts_Code
Posted 5 days ago

What will be the output of the following code?
def my_function():
return 3 + 2
x = my_function()
print(x)

1 - 0

Shorts_Code
Posted 6 days ago

How do you declare a global variable in Python?

1 - 0

Shorts_Code
Posted 1 week ago

Which keyword is used to check if a value is present in a list, tuple, etc.?

1 - 0

Shorts_Code
Posted 1 week ago

What is the output of the following code snippet?
x = [1, 2, 3, 4]
y = x
y.append(5)
print(x)

1 - 0

Shorts_Code
Posted 1 week ago

How do you access the value associated with a specific key in a dictionary?
my_dict = {'name': 'John', 'age': 25}

1 - 0