Posts

Showing posts with the label Identifiers

CHAPTER 2: " PYTHON" ( VARIABLES AND DATA TYPES)

Image
 Variables and Datatypes                                                   A variable is the name given to a memory location in a program for example a = 34 IN b = "He" C = 722.56   Data Types                                        Primarily there are following data types in Python Integers   1. Integers 2. Floating point numbers. Strings 3.Strings 4.Booleans 5. None                       Python is a fantastic language that automatically identifies the type of data for us. a = 71 --( Identifies a as classs<int>)   b = 88.44 => Identifies b as class < flat > name = "He" →Identifies ...