Skip to main content

Posts

Showing posts from March, 2020

Changes from python3.5 to 3.7

From every version to version upgrade there are certain changes they will for better performance and for better results Below are new things added in python3.7 : 1. Keywords :         Reserved words (also called keywords) are defined with predefined meaning and syntax in the language,  These keywords have to be used to develop programming instructions. These keywords can't be used as variables are function names or class names ..etc These 2 new keywords are added in python3.7  are async and await   . These will be used in asynchronous programming you can heard these keys in using of library asyncio or using the python framework aiohttp 2. Breakpoint :     Python breakpoint() is a new built-in function introduced in Python 3.7. Python code debugging has always been a painful process because of tight coupling between the actual code and the debugging module code Previously in python3.5 you need to import from sys modu...