Hey what's up? We are a free website solely relying on advertisement revenue! Please support us by disabling your adBlock for this site and good things will happen!
in Python | 2018-09-18
Difficulty : Beginner
def num_changer(mystr): fir=mystr[::2] sec=mystr[1::2] th=int(fir)+int(sec) return th