Robotics & Artificial Intelligence

Write the output of the print command in the given table.

a = "Python World"

Print statementOutput
print(a[0]) 
print(a[-2]) 
print(a[5]) 
print(a[7]) 
print(a[-9]) 
print(a[10]) 

Python String Manipulation

1 Like

Answered By

3 Likes


Related Questions