All problems
EasyPython Basics
Multiple assignment
Assign the same value to three variables in one line, then print them.
- #variables
Sample input
value = 100
Sample output
100 100 100
multi-assign.py
Output
Press "Run code" to execute.
Loading…
Assign the same value to three variables in one line, then print them.
value = 100
100 100 100
Press "Run code" to execute.