practical questions in python code example
Example 1: python beginner practice problems
1,000+ Python Practice Challenges // Edabit
go to : https://edabit.com/challenges/python3
Example 2: python interview questions
Python OneStop Solution..
link: https://github.com/itzanuragsinghania/Python-One-Stop
Example 3: python interview questions
a=input("enter sequence")
b=a[::-1]
if a==b:
  print("palindrome")
else:
  print("Not a Palindrome")