Python Program to Check if a Number is a Palindrome Data 11/08/2019 Autor Andrei Olteanu Categorie Soluții -1 514 Configurare noua (How To) Situatie Solutie n=int(input("Enter number:")) temp=n rev=0 while(n>0): dig=n%10 rev=rev*10+dig n=n//10 if(temp==rev): print("The number is a palindrome!") else: print("The number isn't a palindrome!") Tip solutiePermanent Voteaza Up Down (13 din 27 persoane apreciaza acest articol) ShareTweetShare Despre Autor Andrei Olteanu Solutii Asemanatoare Stop using Rufus to burn ISOs, these 2 tools for Windows and Linux are better 4 How to setup CodeGPT + WSL and Ollama 3 Tuxedo OS install guide 1 Bypass Siri AI waitlist on macOS 27 Golden Gate Beta 5 How to enable hidden CPU performance boost mode on Windows 11 3 Functia Accesibilitate pe Samsung 0 Leave A Comment? × Cancel Reply Save my name, email, and website in this browser for the next time I comment. eight × six =
Leave A Comment?