I have tried this----- sum=0 for n in range(50,100): if n%2!=0: while n!=0: digit=n%10 sum=sum*10+digit n=n//10 print(sum).
確定! 回上一頁