ভ্যারিয়েবল
>>> a = 100 #An integer type variable
>>> b = 253.64 #A float type variable
>>> c = "Python" #A string type variable>>> a, b, c = 100, 474.7, "Python"Last updated
Was this helpful?
>>> a = 100 #An integer type variable
>>> b = 253.64 #A float type variable
>>> c = "Python" #A string type variable>>> a, b, c = 100, 474.7, "Python"Last updated
Was this helpful?
Was this helpful?