What is the iPython code/command to list the methods in this case from the pathlib module?
Rationale I use pathlib for example to switch between genetic data file formats. In this example from myfile.txt
to myfile.md
(markdown),
fileIn = Path.home() / inFile
fileOut = fileIn.with_suffix('.md')
This solution is from Stack Overflow here because the pathlib documentation is limited for this module. There must be inline help?