05. Functions
>>> def input_number():
... return int(input("Enter a number: "))
...
>>> input1 = input_number()
Enter a number: 25
>>> input1
25
Function must be define first, and then can call it.
Function - Arguments
Passing values to a function
>>> de...
python-beginner.hashnode.dev3 min read