s = 'PlanB'

# Indexing
print(s[2])
# 'a'

# Slicing
print(s[3:])
# 'nB'

# +
print(s + '!!')
# 'PlanB!!'

# *
print(s * 2)
# 'PlanBPlanB'