Quick actions

cmd+k|ctrl+k

Navigation

Languages

Built in fun() and Method

Snippet info

Language

Python

Visibility

public

Author

ankushsahu203

Created

2026-07-13T07:34:01.423934Z

Updated

2026-07-13T07:34:01.423934Z

# print(len("new"))
a="new"
print(a[0:len(a)])
print(a.replace("ew","ear"))
print(a)#it give the assign string bcz string are immutable
INFO