13 lines
230 B
Python
13 lines
230 B
Python
|
# -------------------------------
|
||
|
# Difficult Rocket
|
||
|
# Copyright © 2021-2022 by shenjackyuanjie 3695888@qq.com
|
||
|
# All rights reserved
|
||
|
# -------------------------------
|
||
|
|
||
|
import os
|
||
|
import sys
|
||
|
|
||
|
print(os.curdir)
|
||
|
print(sys.path)
|
||
|
|