Data Science East Africa๐Ÿง  #DSEA Profile picture
Bringing together the East African data science community to help foster the exchange of innovative ideas and encourage the growth of open source software.
Jun 21, 2022 โ€ข 6 tweets โ€ข 2 min read
Data Science East Africa Ultimate Python MeetUp
Speakers:
1. Chris Orwa
๐—จ๐—ป๐—ฑ๐—ฒ๐—ฟ๐˜€๐˜๐—ฎ๐—ป๐—ฑ๐—ถ๐—ป๐—ด ๐——.๐—ฆ๐—ฐ๐—ถ๐—ฒ๐—ป๐—ฐ๐—ฒ ๐˜„๐—ถ๐˜๐—ต ๐—ฅ๐—ฒ๐—ฎ๐—น ๐—น๐—ถ๐—ณ๐—ฒ ๐—ฝ๐—ฟ๐—ผ๐—ท๐—ฒ๐—ฐ๐˜๐˜€ ๐—ป๐—ผ๐˜ ๐—ฑ๐—ฒ๐—น๐˜‚๐˜€๐—ถ๐—ผ๐—ป๐—ฎ๐—น ๐—ผ๐—ฝ๐˜๐—ถ๐—บ๐—ถ๐˜€๐—บ ๐—ฎ๐—ป๐—ฑ ๐——๐—ฒ๐—ฏ๐˜‚๐—ป๐—ธ๐—ถ๐—ป๐—ด ๐˜๐—ต๐—ฒ ๐— ๐˜†๐˜๐—ต๐˜€ ๐—ถ๐—ป ๐——๐—ฎ๐˜๐—ฎ ๐—ฆ๐—ฐ๐—ถ๐—ฒ๐—ป๐—ฐ๐—ฒ Image 2. Kennedy Wangari

๐—Ÿ๐—ฒ๐˜ƒ๐—ฒ๐—ฟ๐—ฎ๐—ด๐—ฒ ๐—ฃ๐˜†๐˜๐—ต๐—ผ๐—ป ๐˜๐—ผ ๐˜‚๐—ป๐—ฑ๐—ฒ๐—ฟ๐˜€๐˜๐—ฎ๐—ป๐—ฑ ๐—ฎ๐—ป๐—ฑ ๐—ฏ๐˜‚๐—ถ๐—น๐—ฑ ๐—บ๐—ฎ๐—ฐ๐—ต๐—ถ๐—ป๐—ฒ ๐—น๐—ฒ๐—ฎ๐—ฟ๐—ป๐—ถ๐—ป๐—ด, ๐—ฎ๐—ฟ๐˜๐—ถ๐—ณ๐—ถ๐—ฐ๐—ถ๐—ฎ๐—น ๐—ถ๐—ป๐˜๐—ฒ๐—น๐—น๐—ถ๐—ด๐—ฒ๐—ป๐—ฐ๐—ฒ ๐—ฎ๐—ป๐—ฑ ๐— ๐—Ÿ๐—ข๐—ฝ๐˜€ ๐—ฝ๐—ฟ๐—ผ๐—ท๐—ฒ๐—ฐ๐˜๐˜€ Image
Sep 7, 2020 โ€ข 4 tweets โ€ข 2 min read
Python callable()

In Python, a callable is anything that can be called, using parentheses and maybe with some arguments. Functions, Generators, and Classes are inherently callable in Python.
#Python #CodeNewbie #100DaysOfCode #DataScience #WomenWhoCode The callable() method takes an object and returns a boolean.

True โ€“ if the object is callable
False โ€“ if the object is not callable