Python Program to pass a variable from one function to another


In this program, you will learn how to pass a variable from one function to another in Python.


def change(num):
    //statement

def passvalue(num):
    //statement

Example: How to pass a variable from one function to another in Python.

def change(num):
    num = num + 10
    print("Value is:", num)


def passvalue(num):
    change(num)


num = int(input("Enter a number:"))
passvalue(num)

Output:

Enter a number:10
Value is: 20