- 1
Which is the answer of the Last cuestionary in Lesson 1?
x = 4 x _ = 5 print __
1 ответ
+ 1
If you have gone through the lesson step-by-step, you would have learned that Python allows you to simplify the expression for repetitive calculation by placing the operator (e.g. +,-,*,/) in front of the ‘=‘ sign. In other words, instead of writing x = x * 5, you can use x * = 5, which is shorter.