based on the syntax below, is there a way I can include a if-else statement if the filename matches (e.g. Data/testfile.csv) and I need to skip the first row and first column to read the file?"
if len(sys.argv) != 2:
print("Usage: python test.py <filename>")
sys.exit(1)
inf = open(sys.argv[1])
data = np.array(
[list(map(float, s.strip().split(","))) for s in inf.readlines()]
)