What am I doing wrong here?
I cannot add a path to my Jupyter Notebook. I am stuck. Any of my attempts did not work at all.
home_dir="\C:\Users\User\Desktop\"
data_dir=home_dir + "\C:\Users\User\Desktop\A Student's Guide to Python for Physical Modeling by KInder and Nelson\code"
data_set=np.loadtxt(data_dir + "HIVseries.csv", delimiter=',')
\C:\Users\User\Desktop\A Student's Guide to Python for Physical Modeling by KInder and Nelson\codeis an absolute file path, adding another root dir prefix makes it invalid.