Actions

Python values variables

From ACL@NCU

Revision as of 05:47, 14 March 2018 by Aclexp (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Values

Integer

10
3 + 6
3*5

Floats

10.0
4.0*8


Define a variable

x = "Hello World!"

Quotes

y = "I like python!"
z = 'I like python!'
y_z = "I 'like' python!"

print y, z, y_z