+ 1
Cierto o no?
x=2 x*=3 print(x) que debe salir
4 odpowiedzi
+ 15
6
x*=3 is also x = x * 3
+ 4
==? someone translate it ... ...😑
+ 3
What's that "language"!! :-)
+ 3
En python la respuesta es 6, ya que x*=3 es x=x*3 y siendo x=2 en la sentencia anterior, entonces 2*3 es = 6
------------------------------
In python the answer is 6, since x * = 3 x = x * 3 and where x = 2 in the above sentence is then 2 * 3 = 6