Hi,
I have used both raw_input() and input() for a same input value.
But these gives different output.
I have listed below what actually I have done
>>> a = raw_input("===>")
===> 023
>>> a
'023'
I have given the same
On Aug 19, 1:48 pm, Pierre wrote:
> Hello,
>
> I would like to know how to find the difference (set operation)
> between 2 arrays :
>
> a = array([1,2, 3,2,5,2])
> b = array([1,2])
> I want a - b = [3,5]
>
> Well, the equivalence of setdiff in matlab...
>
> I thought a.difference(b) could work, bu
On Aug 19, 1:48 pm, Pierre wrote:
> Hello,
>
> I would like to know how to find the difference (set operation)
> between 2 arrays :
>
> a = array([1,2, 3,2,5,2])
> b = array([1,2])
> I want a - b = [3,5]
>
> Well, the equivalence of setdiff in matlab...
>
> I thought a.difference(b) could work, bu