fork(1) download
  1. import numpy
  2. import json
  3. # import pandas
  4.  
  5. # learning pandas
  6.  
  7. data_dict = {"x": [v for v in numpy.random.uniform(low=-10.0, high=10.0, size=(12,))],
  8. "y": [v for v in numpy.random.uniform(low=-10.0, high=10.0, size=(12,))],
  9. "temperature": [(f"{v} \xb0C") for v in numpy.random.uniform(low=-10, high=45, size=(12,))]}
  10.  
  11. print(json.dumps(data_dict, indent=4))
  12.  
  13. # data_frame = pandas.DataFrame(data=data_dict)
  14. # print(data_frame)
Compilation error #stdin compilation error #stdout 0.11s 94336KB
stdin
Standard input is empty
compilation info
Traceback (most recent call last):
  File "/usr/lib/python3.5/py_compile.py", line 125, in compile
    _optimize=optimize)
  File "<frozen importlib._bootstrap_external>", line 735, in source_to_code
  File "<frozen importlib._bootstrap>", line 222, in _call_with_frames_removed
  File "./prog.py", line 9
    "temperature": [(f"{v} \xb0C") for v in numpy.random.uniform(low=-10, high=45, size=(12,))]}
                                ^
SyntaxError: invalid syntax

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "<string>", line 1, in <module>
  File "/usr/lib/python3.5/py_compile.py", line 129, in compile
    raise py_exc
py_compile.PyCompileError:   File "./prog.py", line 9
    "temperature": [(f"{v} \xb0C") for v in numpy.random.uniform(low=-10, high=45, size=(12,))]}
                                ^
SyntaxError: invalid syntax

stdout
Standard output is empty