Why am I getting NZEC error in python2 and python3?
t,s=map(float, raw_input().split())
print t
print s
note: I have tried using input() instead of raw_input() in python3 still same NZEC error
Also tried using split("") and split(" ") and split() still same error!
Tried using the following but still same NZEC error:
x,y=input().split(’ ‘) [this is in python3, tried x,y=raw_input().split(’ ') in python2]
x=int()
y=float()
Can anyone please help me?