Palindrome checker
Check if a string i palindrome or not return true or false, def isPalindrome(s): s = s.lower() return s == s[::-1] print(isPalindrome…
by Mohammad Shohag
Check if a string i palindrome or not return true or false, def isPalindrome(s): s = s.lower() return s == s[::-1] print(isPalindrome…
flask rest API tutorial, let's start developing rest API using python flask. First of all make sure you have installed python and also flask. No…