def empty(new):
new1=''
for i in new:
new1=i+new1
print(new1)
print(new1)
new='First question'
print(new)
print(empty(new))
output:
First question
F
iF
riF
sriF
tsriF
tsriF
q tsriF
uq tsriF
euq tsriF
seuq tsriF
tseuq tsriF
itseuq tsriF
oitseuq tsriF
noitseuq tsriF
noitseuq tsriF
None
Question: why do i get none at the end???