PYENV Guide For Multiple Python Version Installation

Introduction Managing multiple Python projects into different Python versions is not an easy task. This is where your current project will either make or break due to unsatisfy project requirements. What is pyenv? pyenv is a Python version management tool. pyenv were...

Why Lambda Python Anonymous Function?

What-is-LAMBDA? lambda is like a function in python. lambda is like or an alternative to function .You might want to view lambda as an anonymous function because you don’t need to specify a name like creating a function. def function_name(): pass Since Python...

Python Object Oriented Programming (OOP)

Introduction Python is known for its strength as Object Oriented Programming even though Python itself is a multi-paradigm progamming language which support different programming approaches like other design pattern such as procedural, functional and more. OOP uses...

My Markdown Notes

Markdown cheatsheet Syntax Description Header Title Paragraph Text Syntax highlighting { "firstName": "John", "lastName": "Smith", "age": 25 } My Markdown...