I want to read a file called myData.txt in the C:/Users/ITE/ location with a variable name of readFilePath for reading the file. What is the assignment statement for setting it up?
Note: Assume the import statement to use paths is already included and use the textbook's format for reading in a file.
readFilePath="C:/Users/ITE/myData.txt"
Feedback
Based on answering incorrectly
Did you use ' instead of "?
Did you use Path()?
Did you include an "r" at the beginning? If so, don't.