Python-Buildin-Types
Wed 12 November 2025
# created : 20250113
# https://www.scientecheasy.com/2022/09/data-types-in-python.html/
# Dynamic data
# which means we dont want to specify a data type when assigning to a variable
# the change in the value leads to a change in data type
my_var = "Hi Friends!" # holding string.
my_var = 25 # same variable holding numeric …Category: python-basics
Read More