Path problems in python/,./,../,

1. Relative path

‘/’: represents the root directory. In Windows systems, it represents the root directory of a certain disk.
‘…/’: represents the upper-level directory.
‘./’: represents the current directory (when indicating the current directory, you can also remove =='./'== and directly write the file name or lower-level directory).

Guess you like

Origin blog.csdn.net/m0_74459049/article/details/133559487