@mkoding0816

The code is incorrect in the above video. Correct code is

text = "Hello World!"
reversed_text = text[::-1]
print(reversed_text)

missed -1 in text[::1]

@NotaBurnerac-iv6pp

sooo... Hello World reversed is... Hello World?

@dinhanh8893

It's -1 not 1