Skip to content

Instantly share code, notes, and snippets.

@roman-on
Created April 9, 2020 16:56
Show Gist options
  • Save roman-on/44b225caf4b93d78af967d9e13e75a68 to your computer and use it in GitHub Desktop.
Save roman-on/44b225caf4b93d78af967d9e13e75a68 to your computer and use it in GitHub Desktop.
str = input("Please enter a string:")
# ddar astronaut. pldase, stop drasing md!
a = str[1:-1]
all_but_first = a.replace("d","e")
print(all_but_first)
b = str[0]
print(b)
print (b+all_but_first)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment