what will be the output of following code?
p=3
q=p+(1+1.5j)
print(p)
print(q)
Answers
Answered by
11
Answer:
p = 3j
q = p + ( l + 1.5j)
print (p)
print (q)
# Output
3j
1+4.5j
Answered by
8
anwer:
p = 3j
p = 3j q = p + ( l + 1.5j)
p = 3j q = p + ( l + 1.5j) print (p)
p = 3j q = p + ( l + 1.5j) print (p) print (q)
explanation
# Output
3j
1+4.5j
Similar questions