Channel Avatar

AAACoder @UCFXKkPPSsy_Aml9rkI6z4Kw@youtube.com

1.7K subscribers - no pronouns :c

Hello Coders, Just Call Triple A Coder


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

AAACoder
Posted 2 months ago

How many of you know C programming language

2 - 0

AAACoder
Posted 1 year ago

What is the output of the following round() function call

print(round(3.14159,2))

5 - 0

AAACoder
Posted 1 year ago

What is the output of the following range() function

for num in range(2,-5,-1):
print(num, end=", ")

2 - 0

AAACoder
Posted 1 year ago

What is the output of the following loop

for l in 'Jhon':
if l == 'o':
pass
print(l, end=", ")

5 - 5

AAACoder
Posted 1 year ago

What is the output of the following if statement:-
a, b = 12, 5
if a + b:
print('True')
else:
print('False')

5 - 0

AAACoder
Posted 1 year ago

What is output of the following code

a = 6
def display( ):
a = 7
print(a)
print(a)
display( )

5 - 2

AAACoder
Posted 1 year ago

Wish You Very Happy Republic Day

11 - 0

AAACoder
Posted 1 year ago

What is output of the following code:-
a = [1,2,3,4]
b = [5,6,7]
print(a+b)

3 - 0

AAACoder
Posted 1 year ago

I say for love poem to ChatGPT
ChatGPT write this
Love is a rose, delicate and fair
Its petals soft, its thorns debonair
A symbol of the depth and fire
That burns within the heart's desire

Love is a tapestry, rich and grand
Woven with threads of heart and hand
A masterpiece of joy and pain
That tells a story all its own

Love is a journey, long and winding
Filled with highs and lows, and endless finding
A path that leads us to our hearts
A destination that sets us apart

Love is a promise, strong and true
A bond that holds us, me and you
Through all the trials, through all the years
Love is the only thing that perseveres

6 - 0

AAACoder
Posted 1 year ago

The isdisjoint() method returns True if none of the items are present in both sets, otherwise, it returns False

3 - 0