Untitled
user_1910870
plain_text
22 days ago
297 B
4
Indexable
Never
processamento_de_audio.py def aumentar_volume(): print("Aumentando volume!") def diminuindo_volume(): print("Diminuindo volume!") aumentar_volume() diminuindo_volume() app.py from processamento_de_audio import aumentar_volume, diminuindo_volume aumentar_volume() diminuindo_volume()
Leave a Comment