I want to open multiple files using a list of names and such that the names of the opened files will also incorporate the names in the list, as shown below:
List = ["Sin", "Cos", "Tan"]
for x in List:
df_x = pd.read_csv("C:\\Users\\gtala\\OneDrive\\Desktop\\TIME AI\\NIST_Tests\\constants\\x.txt")
So I want x to replace x in the name of the file and in the directory, such that eventually I will open df_Sin from Sin.txt and df_Cos from Cos.txt, etc.
Thanks.