Numpy invert code saat input adalah angka
# 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