KnowledgeBoat Logo

Computer Science

To increase the value of x five times using an augmented assignment operator, the correct expression will be

  1. x += 5
  2. x *= 5
  3. x = x ** 5
  4. none of these

Python Data Handling

15 Likes

Answer

x *= 5

Answered By

3 Likes


Related Questions