Python Basics > Strings > Flashcards
how to slice a string
string [ fisrt index : last index ]
fruit = “ blueberry “
print ( fruit [ 4 : 6 ] )
output : be