I am trying to read a textfile in python using:
with open("Keys.txt","rU") as csvfile:
however this produces a depreciation warning.
DeprecationWarning: 'U' mode is deprecated
What is the non deprecated version for this mode of access for a text/csv file.