Advertisement
George_Ivanov05

HECTOOOOOOOOOOOOOOOR

Jun 15th, 2021
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.22 KB | None | 0 0
  1. def function(string1: str, string2: str):
  2.     for i in range(ord(string1) + 1, ord(string2)):
  3.         print(chr(i), end=" ")
  4.  
  5. string1_input = input()
  6. string2_input = input()
  7.  
  8. function(string1_input, string2_input)
  9.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement