Skip to content

variables and data types in python

Variables Variables are names that given to data that we need to store and manipulate. Python is not ” statically type” i.e. no need to declare variables or their data types before using them. A variables is created the moment we first assign a value to it. #!/usr/bin/python age = 24 # An integer assignment salary = 10000.0 # A floating point name = “John” # A string print age… Read More »Variables & Data Types in Python

Variables & Data Types in Python