mirror of
https://github.com/Rushilwiz/SkoolOS.git
synced 2025-04-16 02:10:19 -04:00
6 lines
100 B
Python
6 lines
100 B
Python
import os
|
|
|
|
pwd = "heyyy"
|
|
path = os.getcwd()
|
|
p = os.path.join(path, '../../', 'pwd.txt')
|
|
open(p, 'w') |