>>> import os
>>> os.path.exists('d:/assist')
True
>>> os.path.exists('d:/assist/getTeacherList.py')
True
>>> os.path.isfile('d:/assist')
False
>>> os.path.isfile('d:/assist/getTeacherList.py')
True
>>> os.makedirs('d:/assist/set')
>>> os.path.exists('d:/assist/set')
True

相关文章:

  • 2022-12-23
  • 2021-06-15
  • 2022-12-23
  • 2021-09-29
  • 2022-12-23
  • 2021-08-09
猜你喜欢
  • 2021-06-11
  • 2022-12-23
  • 2021-12-06
  • 2022-12-23
  • 2022-12-23
  • 2021-08-09
相关资源
相似解决方案