Operadores Inplace en Python | Conjunto 1(iadd(), isub(), iconcat()…)
Más funciones se discuten en estos artículos.
# Python code to demonstrate the working of # ixor() and ipow() # importing operator to handle operator operations import operator # using ixor() to exclusive or and assign value x = operator.ixor(10,5); # printing the modified value print ("The value after xoring and assigning : ",end="") print (x) # using ipow() to exponentiate and assign value x = operator.ipow(5,4); # printing the modified value print ("The value after exponentiating and assigning : ",end="") print (x)
Publicación traducida automáticamente
Artículo escrito por GeeksforGeeks-1 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA