Team FastAppAug 16, 20202 minPython3.6 - What the f-string !In Python 3.6, there is a new way to format the strings, which helps the user in faster coding, less googling, and better readable code. ...
Team FastAppJul 26, 20201 minPython3.8 - Position-Only ParametersLet's discuss something very interesting and useful improvement introduced in python3.8 (PEP 570), the position-only parameters, This is ...
Team FastAppJul 5, 20201 minPython3.8 - The Walrus OperatorIn Python 3.8, we will be able to use assignment as a part of the large expressions. It has a new syntax := Examples: 1. if-else block Py...