Negative indexing of a string always starts with ...........
What is the output of the following Program ?
str = "Be brave"
print(str[::-2])
What is the output of the following Program ?
str = "Be brave"
print(str.isalpha())
What will be output of the below Program ?
a = "Wonderful World"
a[4] = "J"
print(a)
What will be the output of the following Program ?
str = "India is great"
print(str[::-2])
What will be the output of the following Program ?
str = "India is great"
print(str[ : :0])
What will be the output of the following Program ?
str = "developerhelps12"
print(str.isdigit())