Computer Science, asked by sambisani2435, 2 months ago

17. What will be the output of the following python code ?
str = “My Python Programming"
print(str[-5:-1])
print(str[1 : 5])
print(str[ : -4])
print(str[ 0:])
print( str[:13-4])
print(str[ : 3])​

Answers

Answered by lakshya1290
2

Answer:

output will be my python programming

Similar questions