Skip to main content

Posts

Showing posts from June, 2021

Featured

Write a Python Program to find palindrome of a given string

If you reverse the word then you get the same word that word is palindrome. def   palindrome ( str ):     pointer =  str       rev_str =  reversed (pointer)       if   list (pointer) ==  list (rev_str):         print ( "It is palindrome" )       else :         print ( "It is not palindrome" )  palindrome( 'level' ) palindrome( 'madam' ) palindrome( 'life' ) palindrome( 'refer' ) Output:  It is palindrome It is palindrome It is not palindrome It is palindrome

Write a Python Program to find palindrome of a given string

Pandas moduls

Top 5 movies using python

Numpy-2

Numpy in python

Word count in python from file

Quick sort in python

Merge sort in python

Insertion sort in python