Introduction to Python and its featuresDefinition Python is an interpreted, object-oriented, high-level programming language with dynamic semantics. Its high-level built in data…Posted on October 18th, 2020Author: Kunal Bhoyar
TypeError 'NoneType' object is not subscriptableThis error is quite self-descriptive: It means that you are trying to subscript (index) the object that actually is None. In the above…Posted on June 17th, 2020Author: Zoran Pandovski
Python context managersHave you ever heard about Context managers in Python and you weren't sure what they are? The name may be strange but I am sure you have…Posted on June 17th, 2020Author: Zoran Pandovski
Check if a string contains substring in PythonString method in Python Python's alternative to is the keyword . Although under the hood Python may use some of the magic methods like…Posted on May 27th, 2020Author: Pavle Jonoski