Posts

Python is called python

Image
  why python is called python? When he began implementing  Python ,  Guido van Rossum was also reading the published scripts from “Monty  Python's  Flying Circus”, a BBC comedy series from the 1970s . Van Rossum thought he needed a name that was short, unique, and slightly mysterious, so he decided to call the language  Pyt hon .

Data Structures

Image
  Data Structure  can be defined as the group of  data  elements which provides an efficient way of storing and organising  data  in the computer so that it can be used efficiently.                    Some  examples  of  Data Structures  are arrays, Linked List, Stack, Queue, etc. DATA TYPE A data type is an  attribute  of data which tells the compiler (or interpreter) how the programmer intends to use the data. Primitive : basic building block (boolean, integer, float, char etc.) Composite : any data type (struct, array, string etc.) composed of primitives or composite types. Abstract : data type that is defined by its behaviour (tuple, set, stack, queue, graph etc).                                                    Data Structures   ...