How can I write a Python program to check if a string is a palindrome or not without reversing the original string?

Asked by Last Modified  

Follow 1
Answer

Please enter your answer

Enhance your skill set with quick courses in 'python', 'javascript' & 'sap ui5 / fiori / abap'

By reversing, the rhs will return the reverse of the string. >>> s='malayalam'>>> 'is a palindrome' if s==s else 'not a palindrome''is a palindrome'>>> >>> s=input('enter a string... ')enter a string... racecar>>> 'is a palindrome' if s==s else 'not a palindrome''is...
read more
By reversing, the rhs will return the reverse of the string. >>> s='malayalam'>>>'is a palindrome' if s==s[::-1] else 'not a palindrome''is a palindrome'>>>>>> s=input('enter a string... ')enter a string... racecar>>> 'is a palindrome' if s==s[::-1] else 'not a palindrome''is a palindrome'>>> s=input('enter a string... ')enter a string... a string>>> 'is a palindrome' if s==s[::-1] else 'not a palindrome''not a palindrome'>>> _______________________________________________________________________________ Otherwise, you can check each character in the string read from the front against each character read from the back.. >>> s='malayalam'>>>for i in range(len(s)): if s[i]!=s[-(i+1)]: 'not a palindrome' break else: Noneelse: 'is a palindrome' 'is a palindrome'>>> s='rotor'>>> for i in range(len(s)): if s[i]!=s[-(i+1)]: 'not a palindrome' break else: Noneelse: 'is a palindrome' 'is a palindrome'>>> s='qwerty'>>> for i in range(len(s)): if s[i]!=s[-(i+1)]: 'not a palindrome' break else: Noneelse: 'is a palindrome 'not a palindrome'>>> read less
Comments

Related Questions

Are there coding standards or a style guide for Python programs?
The PEP 8 -- Style Guide for Python Code provides a fairly comprehensive list of Python naming conventions. Here are a few examples, but you should consult the PEP 8 style guide for more detailed information...
A
0 0
7
Which version of Python is better for beginners?
For beginners, I recommend starting with *Python 3.x* (currently Python 3.10 or 3.11). Here's why: 1. *Latest features*: Python 3.x has the latest language features, libraries, and tools. 2. *Better...
Nayan
0 0
5
What are the learning stages of Python?
Learning Python progresses through a few main stages. First, start with basics: learn syntax, variables, data types, and loops. Then, move to intermediate topics like functions, modules, file handling,...
Ravi
0 0
6

Now ask question in any of the 1000+ Categories, and get Answers from Tutors and Trainers on UrbanPro.com

Ask a Question

Related Lessons

Python Overview
Python is a high-level, interpreted, interactive and object-oriented scripting language. Python was developed by Gudo vanRossum in the late eighties and early nineties at the National Research Institute...

Code: Gantt Chart: Horizontal bar using matplotlib for tasks with Start Time and End Time
import pandas as pd from datetime import datetimeimport matplotlib.dates as datesimport matplotlib.pyplot as plt def gantt_chart(df_phase): # Now convert them to matplotlib's internal format... ...
R

Rishi B.

0 0
0

Python programming - Applications
If you’re thinking of learning Python? Or if you recently started learning it? You may be asking yourself: "What exactly can I use Python for?" There are so many applications for python, but there...

Write a python program to display dictonary details from list of dictonary
Print the Following: Print all dictonary in a seperate line. Name of all the products. Total quantity of all the products. Details of any product name when provided. Convert all the product name to upper case and print.
A

Ankit P.

0 0
0

Python Script for random Password generation
from random import randintdef passwordgen(request): str_not_include = "1 L I i l o O 0" str_small ="abcdefghjkmnpqrstuvwxyz" str_caps = str_small.upper() str_num = "23456789" str_special...

Recommended Articles

Python is one of the most popular programming languages in the world. It is general-purpose, object oriented, high-level programming language used in a number of programming fields. Python is a great programming language to learn as it will introduce you to the world of programming. If you are from the technical background...

Read full article >

Microsoft Excel is an electronic spreadsheet tool which is commonly used for financial and statistical data processing. It has been developed by Microsoft and forms a major component of the widely used Microsoft Office. From individual users to the top IT companies, Excel is used worldwide. Excel is one of the most important...

Read full article >

Information technology consultancy or Information technology consulting is a specialized field in which one can set their focus on providing advisory services to business firms on finding ways to use innovations in information technology to further their business and meet the objectives of the business. Not only does...

Read full article >

Applications engineering is a hot trend in the current IT market.  An applications engineer is responsible for designing and application of technology products relating to various aspects of computing. To accomplish this, he/she has to work collaboratively with the company’s manufacturing, marketing, sales, and customer...

Read full article >

Looking for Python Training classes?

Learn from the Best Tutors on UrbanPro

Are you a Tutor or Training Institute?

Join UrbanPro Today to find students near you