python string object code example
Example 1: python string cut
# string [start:end:step]
string = "freeCodeCamp"
print(string[0:len(string)-1]) # freeCodeCam
print(string[0:5]) # freeC
print(string[2:6]) # eeCo
print(string[-1]) # p
print(string[-5:]) # eCamp
print(string[1:-4]) # reeCode
print(string[-5:-2]) # eCa
print(string[::2]) # feCdCm
Example 2: {} string python
txt1 = "My name is {fname}, I'm {age}".format(fname = "John", age = 36)
txt2 = "My name is {0}, I'm {1}".format("John",36)
txt3 = "My name is {}, I'm {}".format("John",36)
#https://www.w3schools.com/python/ref_string_format.asp