6 Respostas
+ 2
it means not or not equal to.
It returns True if operands on either side are not equal to each other, and returns False if they are equal.
example:
5 != 10
#read as 5 is not equal to 10
output is True
0
i will get back to you, Rose. appreciate.
0
a = 'this is python'
a = a.split()
a =[i.capitalize() if i != 'is' else i for i in a]
print('-' .join(a))
check up my code,Rose .
how does the "!=" interprets in a code like this?
0
Emmanuel Baah What is the result when you run the code?
0
This-is-python
0
not equal to