Quick actions

cmd+k|ctrl+k

Navigation

Languages

Sales Tax

Snippet info

Language

Python

Visibility

public

Author

chausage

Created

2025-01-17T02:05:42.901148Z

Updated

2025-01-17T02:05:42.901148Z

def out_func():
    tax =0.1
    def inner_func(sales):
        print("Your sales tax value :", sales*tax)
    return inner_func
a = out_func()
a(100)
a(10)
INFO