0
What's in a Column - Python problem
Could You help me what is wrong with a code in my solution, please? Thank You very much in advance! filename = input() column_name = input() import numpy as np element = print(np.filename, column_name)
1 Respuesta
+ 3
1. print doesn't return anything. It just prints output.
2. I don't think numpy has numpy.filename
What are you trying to do?