0

In python docs

>>> tax = 12.5 / 100
>>> price = 100.50
>>> price * tax
12.5625
>>> price + _
113.0625
>>> round(_, 2)
113.06

I don't understand what does this mean

>>> price + _

and how does it work

Ahmad Dwaik 'Warlock'
  • 5,953
  • 5
  • 34
  • 56

1 Answers1

1

_ means the last result when you are working on python console

Liteye
  • 2,761
  • 1
  • 16
  • 16