The ingenious string inversion of Python learning

Source: Internet
Author: User

String inversion is one of the most common face questions, many kinds of writing, the following to2Home Introduction2, one is a conventional way of writing , one is a clever way of writing:

Title: Completing a StringABCDreversal.

Method1: It's easier to think of ideas that useList
def reversestr (String):
Strlist=[]
I=len (String)-1
while (i>=0):
Strlist.append (String[i])
I-=1
Return '. Join (Strlist)

Method2: If you havepythonfamiliar enough, you can use string slicing to do it with just one sentence.

STRING[::-1]

More information: www.kootest.com; Technology Exchange Group: 182526995

The ingenious string inversion of Python learning

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.