Illustration of an RFID tag

Reading files[edit]

For Python to read a file:

with open('README.md', 'r') as txt: 

    txt_content = txt.read() 


print(txt_content)