Computer Science, asked by naveenvaz100, 3 months ago

create a python function that is parameter passed a file name and return the second line in the file if there is no second line or the file does not exist return None​

Answers

Answered by cheemtu
3

Answer:

import numpy

def loadfile(filename, i):

  return numpy.loadtxt(filename, usecols=(i,))

Explanation:

pls mark brainliest

Similar questions