5 lines
140 B
Python
5 lines
140 B
Python
import time
|
|
def chi_sono(unit, tool):
|
|
print(f'{__name__}: {unit} - {tool}')
|
|
time.sleep(20)
|
|
return f'{__name__}: {unit} - {tool}' |