5 lines
96 B
Python
5 lines
96 B
Python
# for Android/Termux
|
|
import os
|
|
def playsound(p):
|
|
os.system(f"play-audio '{p}'")
|
|
print(p) |