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

6 lines
49 B
Python
Raw Permalink Normal View History

2013-04-10 23:57:08 -07:00
>>> exec('''
x = sum([1,2,3,4])
print(x)
''')
10