语法错误:在函数外部“返回”。我做错了什么?

时间:2019-12-03 14:24:45

标签: python

这是我的代码,但是我有一个错误。我需要更改什么?我得到的错误是:  节目输出

文件“ 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

0 个答案:

没有答案