Discover and read the best of Twitter Threads about #pyhton

Most recents (1)

โœ… 20 Functions use in Python
#100DaysOfCode
๐Ÿงตโ†“
โž€ all ()
๐Ÿ”นThis function returns True, if all element of the iterable are True or itcrable is empty.
EX:-
a = array([100,200,300,400,500])
b = array([100,200,300,400,500])
c=a==b
all(c)
โž any ()
๐Ÿ”น This function returns True, if any one element of the iterable is True. if iterable is empty then returns False.
EX:-
a = array([100, 200, 300, 400, 500])
b = array([100,20,30,400,50])
c=a == b
Read 25 tweets

Related hashtags

Did Thread Reader help you today?

Support us! We are indie developers!


This site is made by just two indie developers on a laptop doing marketing, support and development! Read more about the story.

Become a Premium Member ($3.00/month or $30.00/year) and get exclusive features!

Become Premium

Too expensive? Make a small donation by buying us coffee ($5) or help with server cost ($10)

Donate via Paypal Become our Patreon

Thank you for your support!