Untitled
user_1910870
plain_text
08/28/2024 4:07 PM
396 B
23
Indexable
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()Editor is loading...
Leave a Comment