Answers for "read variables from text file python"

13

python read file to variable

with open('data.txt', 'r') as file:
    data = file.read().replace('\n', '')
Posted by: Guest on February-27-2020
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

Code answers related to "read variables from text file python"

Python Answers by Framework

Browse Popular Code Answers by Language