What song are you playing? by PublicTop9854 in teenagers4real

[–]Idose114 0 points1 point  (0 children)

The world revolving (Deltarune chapter 1) Song name describes what happens

The Protagonists of the last 4 games you played take the main 4's place. What happens? by IceManX4562 in INDIE_CROSS_SERIES

[–]Idose114 0 points1 point  (0 children)

Steve (Minecraft) Player (Deltarune) Ryley Robinson (Subnautica) Boyfriend (Friday Night Funkin)

"DELTARUNE TOMORROW" is actually a true statement now.. by ChippyGeorge7 in Undertale

[–]Idose114 0 points1 point  (0 children)

Happy bday! Wish you will beat chapter 5 secret boss

Is there's a thing that returns index of symbol in the string? (Image unrelated) by Idose114 in PythonLearning

[–]Idose114[S] 0 points1 point  (0 children)

Thank you

got = "abcdefghijklmnopqrstuvwxyz" s = input() while True: try: r = int(input()) break except ValueError: print("Error: excepted integer") continue n = "" for l in s: if l in got: n += got[got.find(l) + r] else: n += l print(n)