from A.py to B.py file
A.py file
def ticket():
    .
    .
    .
    tickets = child + student + senior + adult
    total_price = child * Child_price + student * student_price + senior * senior_price + adult * adult_price
How can i import total_price from A.py file to B.py file
 
    