Ok don't yell at me. I'm still learning.
Text file (file.txt, these are the entire contents):
pn = FZP16WHTEPE444
cp = custpart
pd = partdesc
bq = 11,000
co = color 02
ma = material 01
mo = 1234
ln = 2227011234
mb = 38
Python code:
print(str(pn))
print(str(cp))
print(str(pd))
print(str(bq))
print(str(co))
print(str(ma))
print(str(mo))
print(str(ln))
print(str(mb))
What do I do to make the python script call the strings from the text file so it'll display the following?:
FZP16WHTEPE444
custpart
partdesc
11,000
color 02
material 01
1234
2227011234
38