I want to create a function that creates a dataframe named after the function input So for example
def createfile(filename):
     # the code here to create the df as below 
     filename_1 = pd.DataFrame()
but i can't find a way to use the input as part of of the new file
 
    