First Str
first_str = "My baby\'s toy \"car\" is his fav and he loves it. \nHe plays a lot with this toy car."
print(first_str)
string = '123456789'
print(string[0:9:2]) /[start:stop:step] - string slicing
INFO
first_str = "My baby\'s toy \"car\" is his fav and he loves it. \nHe plays a lot with this toy car."
print(first_str)
string = '123456789'
print(string[0:9:2]) /[start:stop:step] - string slicing