RosettaCodeData/Task/Runtime-evaluation/Python/runtime-evaluation-1.py

6 lines
47 B
Python
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
>>> exec '''
x = sum([1,2,3,4])
print x
'''
10