Generation

generate functionFri, 04 Nov 2022

Count the time between two actions inside Excel

def time_count(func): def wrapper(*args, **kwargs): start = time.time() func(*args, **kwargs) end = time.time() print(f'{end - start} seconds') return wrapper

Want to kickstart your project?Use the new AI Studio to create your code