0
i = '3471' z = i[::-1] if i == z: print(z) else: print(z[2]*2 + z[3]*2)
output?
2 Antworten
+ 8
4433
0
Understand that i and z are strings. and * operator simply repeats the given string a given number of times. Then try to understand the answer
output?