kopia lustrzana https://github.com/micropython/micropython-lib
15 wiersze
182 B
Python
15 wiersze
182 B
Python
![]() |
import os
|
||
|
|
||
![]() |
print(os.getcwd())
|
||
|
|
||
![]() |
l = os.listdir()
|
||
|
print(l)
|
||
![]() |
assert "test_dirs.py" in l
|
||
![]() |
assert "os" in l
|
||
![]() |
|
||
|
for t in os.walk("."):
|
||
|
print(t)
|
||
|
|
||
|
for t in os.walk(".", False):
|
||
|
print(t)
|