import pickle # If the data is in a file, load from file: with open('level3_data.pkl', 'rb') as f: data = pickle.load(f) print(data) # This should print the Python object, possibly a list or numbers