Quick actions

cmd+k|ctrl+k

Navigation

Languages

First Str

Snippet info

Language

Python

Visibility

public

Author

ak.amita28

Created

2026-04-04T07:50:44.256962Z

Updated

2026-04-14T09:13:54.395685Z

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