Report Bug
Qus :

what will the output of following code

my_string="Hello,world"
print(my_string[-6:-1])

Qus

निम्नलिखित कोड का आउटपुट क्या होगा

my_string="Hello,world"
print(my_string[-6:-1])


A. ,worl
B. worl
C. world
D. oworld


Solution
A. ,worl






Report Bug