What will be the output of the following code?
x="hello ABCD"
a=x[2:]
b=a[:2]
c=b[-1]
print(c)
Answers
Answered by
0
Answer:
xab-1 is your answer OK .output
Similar questions