我认为除了HelloWorld之外,Python的三大数据转换实例可以作为开始学习Python的入门语言。
Python的三大数据转换实例一、反转三位数classSolution:deffuntcion(self,number):h=int(number/100)t=int(number%100/10)z=int(number%10)return100*z+10*t+hif__name__=='__main__':solution=Solution()num=123new_num=solution.fu