Python
Shebang
#!/usr/bin/env python3
from pathlib import Path
current = str(Path.cwd().absolute())
print('aktuelles Verzeichnis:', current)
Links
https://docs.python.org/3/library/
Zurück zu Hauptseite
#!/usr/bin/env python3
from pathlib import Path
current = str(Path.cwd().absolute())
print('aktuelles Verzeichnis:', current)
https://docs.python.org/3/library/
Zurück zu Hauptseite