Answer:
c = 'z'
while c >= 'a':
print(c)
c = c h r(ord(c)-5)
Step-by-step explanation:
Keep in mind, you could have also chosen to do:
print("z\\u\\p\\k\\f\\a\\")
but it seems the character arithmetic is what is asked for...
1.6m questions
2.0m answers