python pilih file di folder yang diberikan ekstensi
# use endswith(".extension")
import os
for file in os.listdir("/mydir"):
if file.endswith(".txt"):
print(os.path.join("/mydir", file))
PeruTilli