Posts

Showing posts from April, 2022

PYTHON : ZTM - Section : 3 : 17. Learning Python

Image
 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++      ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 17. Learning Python  Best Practices  Terms  Action  Datatypes   19. Python Data Types These are called the fundamental data types in python int float bool str list tuple set  dict  Classes  -- beyond the datatype we can create something called classes. Custom type . Specialized Data types -- They are not build into python . But they are special packages and     modules that we can use from libraries . Whenever we do not have the data types in the standard data types and we do not want to create our own we can use the specialized datatype. We can from what we call modules. You can think of it as extensions and there is another type which is a little special called none. None : The idea of 0 , it is the absents of value,  We will start with the fun...