Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

variables in python

# in python you can assign values to multiple variables in one line

a, b, c = "one", "two", "there"

print(a)
print(b)
print(c)
Source by openclassrooms.com #
 
PREVIOUS NEXT
Tagged: #variables #python
ADD COMMENT
Topic
Name
3+3 =