Code inversé Numpy lorsque l'entrée est un nombre

# welcome to softhunt.net
# Python program explaining
# invert() function

import numpy as np
num = 5
print ("Input number : ", num)
	
ans = np.invert(num)
print ("inversion of 5 : ", ans)
Outrageous Ostrich