fork download
  1. def printArray(array):
  2. for i in range(len(array)):
  3. print(array[i], end=" ")
  4. print("\n")
Success #stdin #stdout 0.09s 14072KB
stdin
Standard input is empty
stdout
Standard output is empty