python小程序-当前路径获取以及时间格式的文件夹创建 importosfromdatetimeimportdatetime os.path.dirname(__file__)print(os.path.abspath(__file__))print(os.path.dirname(os.path.abspath(__file__)))print(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))#当前时间,年月日a = datetime...