def remove_char(s): print(s[:-1]) #if you want to remove first letter use s[0:-1] remove_char('Your_string_Here')