“Daftar Jalur Python” Kode Jawaban

File daftar python di direktori saat ini

import os

files = os.listdir('.')
print(files)
for file in files:
  # do something
  
Soggy Boi

Daftar Jalur Python

#see a list of all available paths
import os
os.listdir(path='.') #Where '.' denotes the same location. For subfolders:
os.listdir(path='./subfoldername' # you can go deeper and deeper using the same method
Bewildered Boar

Jawaban yang mirip dengan “Daftar Jalur Python”

Pertanyaan yang mirip dengan “Daftar Jalur Python”

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya