Can I import module in Python giving it two or more aliases in one line?
With two lines this works:
from time import process_time as tic from time im
You could do
from time import process_time as tic toc = tic
You can do that with
from time import process_time as tic, process_time as toc