Answers for "python read text file variables"

1

how to get variabels from text file

#python stuff over here
getVarFromFile(filename) #this is the function that im looking for
print var_b
#output: car, as string
print var_c
#output 15.5, as number.
Posted by: Guest on September-22-2020
0

python load a txt file and assign a variable

with open('your_text_file.txt', 'r') as f:
    username = f.readline()
    password = f.readline()
Posted by: Guest on October-11-2020

Browse Popular Code Answers by Language