Find the output of the following python code?
Word='green vegetables'
print (word.find('g',2))
print(word.find('veg',2))
Answers
Answered by
12
Answer:
8 and 6
Explanation:
Similar questions