Main public logs

From Master of Neuroscience Wiki

Combined display of all available logs of Master of Neuroscience Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 13:28, 15 October 2025 Davrot talk contribs created page Creating order via sub-directories: os.makedirs (Created page with " == The goal == How can I make sure that the directory for my output data is always there? We just create it automatically every time via [https://docs.python.org/3/library/os.html#os.makedirs os.makedirs]! Questions to [mailto:davrot@uni-bremen.de David Rotermund] == Creating a directory == <syntaxhighlight lang="python">import os some_path: str = "a_home_for_my_data" os.makedirs(some_path, exist_ok=True)</syntaxhighlight> == Creating a sub-sub-sub-directory == Firs...") Tag: Visual edit