myStr[:4]
"MISS"
myStr[-5:]
"SIPPI"
"#"
"MISS#SIPPI"
event = "G20 Presidency@2023" L = event.split(' ') print(L[::-2])