Python Program To Check Whether A Number Is A Palindrome Or Not

แชร์
ฝัง
  • เผยแพร่เมื่อ 23 ม.ค. 2025

ความคิดเห็น • 82

  • @ShaheerAziz-f7e
    @ShaheerAziz-f7e 6 หลายเดือนก่อน +1

    # First we have to take input from the user
    num = input("Enter a number: ")
    # Now we have tor reverse the string
    num1 = num[::-1]
    # Checking if the reversed string is equal to original (Checking if its Palindrome)
    if (num==num1):
    # If condition true print
    print("The number is palindrome.")
    else:
    # If condition false print
    print("The number is not palindrome")

  • @mulikeparathe9066
    @mulikeparathe9066 ปีที่แล้ว +4

    mystr = input("Enter to check if its Palindrome")
    if mystr[::-1].strip() == mystr.strip():
    print("Yes It is a Plaindrome")
    else:
    print("No It is not a Plaindrome")

  • @rudramondal7993
    @rudramondal7993 4 ปีที่แล้ว +6

    please add more these kind of stuffs. thankyou harry

  • @ShivamGupta-hr8sn
    @ShivamGupta-hr8sn 4 ปีที่แล้ว +2

    472 subs while makin it and now 624k awesome journey brother!!

  • @uttamroy7947
    @uttamroy7947 29 วันที่ผ่านมา

    def is_palindrome(num):
    temp=num
    reverse=0
    while(num>0):
    dig=num%10
    reverse=reverse*10+dig
    num=num//10
    return temp==reverse
    num=int(input("Enter the Number:- "))
    print(is_palindrome)

  • @HarshitSatyawali-ub5ki
    @HarshitSatyawali-ub5ki ปีที่แล้ว +4

    Extremely helpful, thank you very much!!

  • @badgamer8108
    @badgamer8108 5 ปีที่แล้ว +25

    sir plz make a video about how we think about the logic.

    • @anupamalok20_16
      @anupamalok20_16 2 ปีที่แล้ว

      Yes

    • @cccc4m
      @cccc4m ปีที่แล้ว +2

      Ye sab ka ek hi tarika h more of more examples solve kro

    • @manavjain9750
      @manavjain9750 6 หลายเดือนก่อน

      Uske liye maths Karo solve

  • @sachintandon6058
    @sachintandon6058 5 หลายเดือนก่อน

    so beautiful harry, you solved my querry, thank you so much for awesome video

  • @dvfoodworld200
    @dvfoodworld200 3 ปีที่แล้ว +1

    Thankyou soo much harry bhai ,
    Ek dum simple way mei explain karte ho aap

  • @suryakantbamane3264
    @suryakantbamane3264 4 ปีที่แล้ว +5

    num = int(input("Enter the number:
    " ))
    listnum = list(map(int,str(num)))
    revlist = listnum[::-1]
    if listnum == revlist:
    print("The number is palindrome.")
    else:
    print("The number is not palindrome")
    #Bhai sabse asan tarika..using map and list slicing taught by you in other videos. So i tried this easiest way..How is it?

    • @PRADEEPCHOUDHARY.
      @PRADEEPCHOUDHARY. 4 ปีที่แล้ว +1

      Bhai Kya ye program Jo aapne bnaya h wo theek h .....
      Write a python program whether a string is palindrome or not?
      Is ques ka ans m Jo aapne likha h wo likh skta hu .....

    • @suryakantbamane3264
      @suryakantbamane3264 4 ปีที่แล้ว

      @@PRADEEPCHOUDHARY. ha bro

  • @abrarulhasan3602
    @abrarulhasan3602 4 ปีที่แล้ว +2

    name = input()
    reverse = name[::-1]
    if name == reverse:
    print("palindrome")
    else:
    print("not palindrome")

    • @Skonthouzm
      @Skonthouzm 2 หลายเดือนก่อน

      But what about a word containing one or two uppercase

  • @geeli_puppy_.
    @geeli_puppy_. 4 ปีที่แล้ว +1

    a = input()
    if a.lower()[::-1] == a.lower():
    print('Palindrome')
    else:
    print('Not a Palindrome')

    • @sumitsinghsengar839
      @sumitsinghsengar839 3 ปีที่แล้ว

      why to use lower() method ? value in integer how lower than anything to interger?

  • @padhakukukki
    @padhakukukki 7 หลายเดือนก่อน +1

    you had 735 subs that time, now its 6.1M. damn you cooked right

    • @alishanworld556
      @alishanworld556 6 หลายเดือนก่อน

      litterally when saw i was like wohho anyone can do it if he/she do hardwork and creates consistency

  • @manavjain9750
    @manavjain9750 6 หลายเดือนก่อน +2

    Video ke starting Mai 753 subscribers dikha rha tha... 2024 Mai 6.22M 🎉🎉

  • @jhadadae9254
    @jhadadae9254 2 ปีที่แล้ว +1

    #PALLINDROME NUMBER
    #STRING DATA TYPE
    x=input("Enter your values : ")
    reverse=x[ : : -1]
    if x==reverse:
    print("Pallindrome no." , "=" , x)
    else:
    print("NOT" , "=" , x)

  • @unthinkable9096
    @unthinkable9096 4 ปีที่แล้ว +1

    U r great ❤️ Bhiya🤗

  • @simarani6123
    @simarani6123 3 ปีที่แล้ว +1

    Sir we could also use string slicing

  • @sauravmahajan1313
    @sauravmahajan1313 ปีที่แล้ว

    Bhai ke 735 subscribers the 5 years ago ab 4.5 million nice 💥💫

  • @utkarshsaxena6073
    @utkarshsaxena6073 3 ปีที่แล้ว

    helped me a lot...thanks❣

  • @saqibdar07
    @saqibdar07 ปีที่แล้ว

    At that time he has 735 subscribers and now he has crossed 3.8 million
    Print("Harry Ki Jai")

  • @santanugoswami5531
    @santanugoswami5531 6 ปีที่แล้ว +5

    How about doing the operation in string or list
    If x[::]==x[::-1] :
    return true
    else:
    return false

    • @sairajdas6692
      @sairajdas6692 6 ปีที่แล้ว +1

      santanu goswami
      return x == x[ : :-1]

    • @YogeshKumar-ct4de
      @YogeshKumar-ct4de 6 ปีที่แล้ว

      This was the first thing that came to my my mind.

    • @CodeWithHarry
      @CodeWithHarry  6 ปีที่แล้ว +9

      The program was for beginners to make them understand how to deal with such problems. Although one liners are great but they make code unreadable for beginners/Intermediate programmers!

    • @AniketKumar-bm8gi
      @AniketKumar-bm8gi 5 ปีที่แล้ว

      You are right this code is short

    • @Harsh_Reveals
      @Harsh_Reveals 4 ปีที่แล้ว

      Bro but this will return False as If I input as Radar then it will reverse like radaR and will return its not palindrome.....

  • @gauravchachada7563
    @gauravchachada7563 5 ปีที่แล้ว +1

    Can we do this with for loop?

  • @JayAditya-ih5zy
    @JayAditya-ih5zy ปีที่แล้ว +1

    wow 735 to 4 million subscribers maan gye guru ji

  • @sumitbisht2440
    @sumitbisht2440 9 หลายเดือนก่อน +1

    congratulations sir for 5.9 million and 6 million is counting ❤

  • @MrityunjayTripathi-l7n
    @MrityunjayTripathi-l7n 10 หลายเดือนก่อน +1

    us smay 735 subs the ab 5.73 mil. ek prakar ka palindrom hi hai.

  • @getboredtoosoon
    @getboredtoosoon 3 ปีที่แล้ว

    Can we do this with string slicing?

  • @khushalchaudhari9437
    @khushalchaudhari9437 4 ปีที่แล้ว

    bhai kya yar bas 4 hi videos ? plz is playlist ko continue kro, But i aagree ap baki playlist me busy honge to hume accha source to bata do practise ka. plz badebhai.

  • @arvindkushwaha711
    @arvindkushwaha711 4 ปีที่แล้ว +2

    print('Please enter number')
    number = int(input())
    temp = number
    reverse = 0
    while (number>0):
    dig = number%10
    reverse = reverse *10 + dig
    number = number /10
    if temp == reverse:
    print('Number is a Palindrome')
    else:
    print('Number is not a pallindrome')
    putting this code but always getting number is not a palindrome.. please help if possible

    • @shubhankarsrivastava9578
      @shubhankarsrivastava9578 3 ปีที่แล้ว +4

      in 8th line of your code you used \(division operator) but we are supposed to use \\(floor division)

  • @khushichaurasia7599
    @khushichaurasia7599 4 ปีที่แล้ว

    🔥🔥🔥🔥🔥😍 fantastic

  • @Bhakti-xj7cz
    @Bhakti-xj7cz 4 ปีที่แล้ว

    does not work for negative numbers. eg (-456)

  • @shakilkhanafridi5858
    @shakilkhanafridi5858 11 หลายเดือนก่อน

    ##to check a number for palindrome
    A=input()
    B=A[::-1]
    print(B)
    if A==B:
    print("the number is palindrome")
    else:
    print("the number is not a palindrome")

  • @zainyzainy7574
    @zainyzainy7574 4 ปีที่แล้ว

    Nice👏😊

  • @suyogbhere328
    @suyogbhere328 4 ปีที่แล้ว

    Nice explantation sir

  • @dineshvalecha9872
    @dineshvalecha9872 ปีที่แล้ว

    sir plese sarre program dalliye jaise ki leap year,buzz factorial sare program ka video daliye

  • @zainyzainy7574
    @zainyzainy7574 4 ปีที่แล้ว

    Nice👍

  • @techieroy6177
    @techieroy6177 6 ปีที่แล้ว +2

    🔥

  • @deepaksharma9929
    @deepaksharma9929 6 ปีที่แล้ว +1

    Keep updating the machine learning playlist

    • @CodeWithHarry
      @CodeWithHarry  6 ปีที่แล้ว

      I will add a new video soon!

  • @arnabroy4558
    @arnabroy4558 3 ปีที่แล้ว

    Thank you

  • @noobyt1937
    @noobyt1937 3 ปีที่แล้ว +1

    Thanks uncle aunty

  • @ameenshaikh8991
    @ameenshaikh8991 ปีที่แล้ว

    thanks bro

  • @shallyyadav7492
    @shallyyadav7492 ปีที่แล้ว

    Can anyone please write this same code using for loop

  • @ishaankapoor933
    @ishaankapoor933 4 ปีที่แล้ว

    lambda num: str(num) == str(num)[::-1]

  • @GigglesGrowls
    @GigglesGrowls 3 ปีที่แล้ว

    If we want to find in a to z

  • @devendragupta636
    @devendragupta636 6 ปีที่แล้ว

    Bhai pip nahi work kr raha

  • @uttamsinghrajpoot324
    @uttamsinghrajpoot324 6 ปีที่แล้ว

    Cool

  • @Aman.o_O
    @Aman.o_O 3 ปีที่แล้ว

    Damn, I gave a like and the like number became a palindrome number i.e., 535 xDDD

  • @codewithashuu
    @codewithashuu 11 หลายเดือนก่อน

    735 to 5.41 M ..

  • @manavrawat4785
    @manavrawat4785 3 ปีที่แล้ว

    Harry op

  • @RishiRajxtrim
    @RishiRajxtrim ปีที่แล้ว

    👍🙏

  • @ShaheerAziz-f7e
    @ShaheerAziz-f7e 6 หลายเดือนก่อน

    you made it too complex

  • @devendragupta636
    @devendragupta636 6 ปีที่แล้ว

    Help plz

  • @RohanDasRD
    @RohanDasRD 6 ปีที่แล้ว +2

    First

  • @vawaygowel9043
    @vawaygowel9043 5 ปีที่แล้ว +2

    ke ke bangladeshi

  • @AmanKumar-w4k4r
    @AmanKumar-w4k4r หลายเดือนก่อน

    2024

  • @rohanbeast3381
    @rohanbeast3381 3 ปีที่แล้ว +1

    class PalindromeCheck:
    def __init__(self, number):
    self.number = number

    def numberArrange(self):
    ls = []
    n1 = self.number
    for item in str(self.number):
    ls.append(item)

    ls.reverse()
    n = int("".join(ls))
    return n, n1

    def checkIt(self):
    func = self.numberArrange()
    original = func[1]
    new = func[0]
    if new == original:
    print("It is Palindrome")
    else:
    print("It is not Palindrome")
    if __name__ == "__main__":
    n = int(input("Enter a Number: "))
    a = PalindromeCheck(n)
    a.checkIt()

    • @ShaheerAziz-f7e
      @ShaheerAziz-f7e 6 หลายเดือนก่อน

      too complex

    • @rohanbeast6592
      @rohanbeast6592 6 หลายเดือนก่อน

      ​@@ShaheerAziz-f7e Brother, make it as short as possible

  • @aavart129
    @aavart129 2 ปีที่แล้ว

    💻

  • @jhonnygaming401
    @jhonnygaming401 2 ปีที่แล้ว

    what a growth