native

What do these operators mean (** , ^ , %, //)?

What do these operators mean (** , ^ , %, //)? Question: Other than the standard +, -, *and / operators; but what does these mean (** , ^ , %, //) ? >>> 9+float(2) # addition 11.0 >>> 9-float(2) # subtraction 7.0 >>> 9*float(2) # multiplication 18.0 >>> 9/float(2) # division 4.5 >>> >>> …

Total answers: 3