Channel Avatar

TechError @UCqLchFj9E6O21M1HsRQQglQ@youtube.com

4.2K subscribers - no pronouns :c

Hey there, I love Technology and Education 📱 DON'T Forge


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

TechError
Posted 1 day ago

Do you want to become a Data scientist? Do you know the answer for popular interview question :What is Kernel Density Estimate?
Checkout the video for the answer -> https://youtu.be/BkvRMQO6inc

0 - 0

TechError
Posted 3 days ago

What is the output of the code?

def func(a, b=[]):
b.append(a)
return b



x = func(1)
y = func(2, [])
z = func(3)

print(x)
print(y)
print(z)

2 - 0

TechError
Posted 1 week ago

Happy to Announce the Data Science series with practical implementations from scratch :). Checkout the first video on the channel -> https://youtu.be/_9ZfWL3flwY

Keep supporting, Like the video and leave your feedback in the comment section. Happy learning Guys !!

1 - 0

TechError
Posted 5 months ago

d = lambda a: a*2
x = [7, 9, 11]
y = list(map(d, x))
print(y)

0 - 0

TechError
Posted 10 months ago

What does this output in Python?
a = 88
b = a // -10
c = int(b) ** 2
print(c)

3 - 1

TechError
Posted 1 year ago

What you like to see on the channel NEXT?
If your suggestion is not HERE, Please put it in COMMENTS !

5 - 0

TechError
Posted 1 year ago

Do you prefer which Twitter Logo?

Follow me on ▶️ twitter.com/TechWired8

2 - 0

TechError
Posted 1 year ago

What does this output in Python?
x = [1, 3, 5, 7, 3] * 7
y = max(set(x), key=x.count)
print(y)

2 - 0

TechError
Posted 1 year ago

x = '1234'
print(x[3]) if len(x) < 4 else print(x[-2])

4 - 0

TechError
Posted 1 year ago

x = [2, 5, 3, 4]
y = ''.join(x)
z = int(y)//2
print(z)

2 - 0