这是我的代码,但是我有一个错误。我需要更改什么?我得到的错误是: 节目输出
文件“ variable-length.py”,第26行 返回loadedArray ^ 语法错误:外部函数“返回” 您的程序有错误。 这是在Codio中。
# Get the filepath from the command line
import sys
P= sys.argv[1]
F= sys.argv[2]
L= sys.argv[3]
B= sys.argv[4]
# ----------------------------------------------------------------
#
# Our Helper functions:
#
# ----------------------------------------------------------------
#
# Loads the file at filepath
# Returns a 2d array with the data
#
def load2dArrayFromFile(filepath):
# Your code goes here:
with open(filepath, 'r')as rfile:
totallines = rfile.read().split('\n')
while '' in totallines:
totallines.remove('')
loadedArray = [eachline.split('|') for eachline in totallines]
return loadedArray