mirror of
git://git.yoctoproject.org/poky.git
synced 2025-07-19 21:09:03 +02:00

Used print function instead of print statement to make the code work in python 3. [Changes from both Ed and Richard] (From OE-Core rev: ced1995694c394d92cb82fb9c25a33dc027a3b69) Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
7 lines
117 B
Python
7 lines
117 B
Python
import os
|
|
|
|
os.system('touch /tmp/testfile.python')
|
|
|
|
a = 9.01e+21 - 9.01e+21 + 0.01
|
|
print("the value of a is %s" % a)
|