No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

14 líneas
279B

  1. import os
  2. def get_base_path():
  3. marker_file = "run.py"
  4. current_path = os.getcwd()
  5. while current_path != 0:
  6. if marker_file in os.listdir(current_path):
  7. return current_path
  8. current_path = os.path.dirname(os.path.normpath(current_path))