Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

NumPy invert Code When the input is a number

# 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)
Source by softhunt.net #
 
PREVIOUS NEXT
Tagged: #NumPy #invert #Code #When #input #number
ADD COMMENT
Topic
Name
9+8 =