User:Simon/Trim4/tools/Python read file
< User:Simon | Trim4/tools
Reading files
For Python to read a file:
with open('README.md', 'r') as txt:
txt_content = txt.read()
print(txt_content)
XPUB & Lens-Based wiki
For Python to read a file:
with open('README.md', 'r') as txt:
txt_content = txt.read()
print(txt_content)