jspython-dev/jspython

Assigning a different values to multiple variables

ppaska opened this issue · 0 comments

a, b, c = 5, 10.32, "Some text"        
  
print(a) 
print(b) 
print(c)