Symbolic Python Ass #2
https://ibb.co/hFr5cXp
In python variable can be defined by simply assigning a value to it. there is no need to define the type of variable, whether it is int, float or str.
x = 1
y = 4.1
z = India
In python function can be defined as:
def f():
print('Hello from f')
def g():
print('Hello from g')
Comments
Leave a comment