Posts

Showing posts from August, 2020

Python3- Data types1

Image
Python DATA TYPES:-         In python, every value has a datatypes. Everything is the object in python programming, datatypes are actually classes and variables are instances(object) of these classes.        1. Numeric         2. Boolean        3. Sequence type               1.Strings                2.List                3.Tuple        4. Set        5. Dictionaries.                                                                        NUMBERS(NUMERIC):-            In this numeric values are stores in variables which are immutable  (the val...

Python 3 -(2) Values and Variables

Image
Python VALUES :-      Basically values are the digits or letters used in python to perform certain task.      These values has different types:                       1.integer type(int)                               eg:-   2,5                       2.floating point type(float)                             eg:-    3.0,2.0                       3.string                             eg:-    hello everyone ! VARIABLES :-                Variable is the location in memory used to store some data (value) or simpl...

Python3

Image
WHY PYTHON?      *Basically python is general purpose ,high level,interpreted language .         *Very simple language to learn.      *It has best packages for AI,deep learning,machine learning etc...      *It also has very interactive frame work that is ipython notebook .      *Extensively used in industry  Features OF PYTHON:-                   *simplicity                    *open source language- free for everyone 👯👫                    *portability-code sharing much easier   💯                                     *Embeddable and extensible                   *interpreted line by line (CPU and Memory Management) ...