A brief discussion on python strings
Python string is a sequence type whose elements are characters. Because the sequence type is a data structure in which elements are placed sequentially, you can obtain a certain character by index, or specify an index range to obtain a group of characters.
>>> ch='abcde' >>> print("ch[0]=",ch[0],"ch[-1]=",ch[-1]) ch[0]= a ch[-1]= e
index is an integer and cannot go out of bounds, from 0 to lne(str)-1, otherwise an error will occur.
>>> len(ch) 5 >>> ch[5] Traceback (most recent call last): File "<pyshell#4>", line 1, in <module> ch[5] IndexError: string index out of range
Print the string in reverse order
def resstr(ch): mid=len(ch) for c in range(mid): print(ch[mid-1-c],end='') >>> resstr('abcde') edcba
Preparation for sb, if the string is reversed, the string cannot be modified. Error message: 'str' object does not support item assignment
The sharding of a string is to separate part of the string from a given string. You can use the following form to index i, j, k
i is the starting position, j is the end position of the index, but does not include the string at position j. The step size of each increase in the index number is k
>>> s="hello world" >>> print(s[0:len(s):2]) hlowrd >>> print(s[1:len(s):3],end='---') eood---
index index, which is from 0 to len(str) -1, you can also use negative indexes, ranging from -n to -1. The starting position of the negative index is the end of the string.
st='asdfg' print(st[-1:0:-1]) gfds
The index of string fragmentation, the starting position of the index i, the ending position of the index j, and the step size k can be omitted. When i is omitted, it starts from 0 or -1, and when j is omitted it goes to the end. The end of a string. When k is omitted, the step size is 1.
st='asdfghjk' print(st[:0:-1]) print(st[2::2]) print(st[0:5:]) kjhgfds dgj asdfg
String-related operations can include connection operations, logical operations, and string processing functions.
st1='abc' st2="def" print("{0}+{1}={2}".format(st1,st2,st1+st2)) print("{0:s}*5={1}".format(st1,st1*5)) abc+def=abcdef abc*5=abcabcabcabcabc
String methods
Strings are immutable. After any string is changed, a new string will be returned. Python string string can be regarded as a class.
st1='abcDEF' print("{0:s}.upper()={1:s}".format(st1,st1.upper())) print("{0:s}.lower()={1:s}".format(st1,st1.lower())) print("{0:s}.swapcase()={1:s}".format(st1,st1.swapcase())) abcDEF.upper()=ABCDEF abcDEF.lower()=abcdef abcDEF.swapcase()=ABCdef st1='abcDEFasde' print("a count={0}".format(st1.count('a'))) print("{0} start with {1} is {2} ".format(st1,'abc',st1.startswith('abc'))) print("{0} end with {1} is {2} ".format(st1,'de',st1.startswith('de'))) a count=2 abcDEFasde start with abc is True abcDEFasde end with de is False st1=' abcDEFasde' print("{0} replace 123 :{1}".format(st1,st1.replace('abc','123'))) print( "{0} remove {1} left char---{2}".format(st1,' ',st1.strip())) abcDEFasde replace 123 : 123DEFasde abcDEFasde remove left char---abcDEFasde
There are too many string methods, so I won’t go into them anymore, it’s not interesting.
byte object
In Python, byte is different from string. A sequence composed of a series of unchangeable unicode characters is called a string. A sequence consisting of a series of strings with an immutable encoding between 0 and 255 is called a byte object.
by=b'abc &' print(type(by)) print("length=",len(by)) <class 'bytes'> length= 5
Add 'b' in front of the string to define the byte object. Each string can be ascii characters, etc. You can use the len() function to calculate the length of the byte object.
ch=input('输入几个数字逗号隔开:') d=ch.split(',') print(d) sum=0 for num in d: sum+=float(num) print("ths sum=",sum) 输入几个数字逗号隔开:2.2,3.3,5.5,6.8 ['2.2', '3.3', '5.5', '6.8'] ths sum= 17.8
Related recommendations:
##Practical application of python strings
Detailed explanation of various built-in functions of Python3 strings
The above is the detailed content of A brief discussion on python strings. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Use most text editors to open XML files; if you need a more intuitive tree display, you can use an XML editor, such as Oxygen XML Editor or XMLSpy; if you process XML data in a program, you need to use a programming language (such as Python) and XML libraries (such as xml.etree.ElementTree) to parse.

There is no simple and direct free XML to PDF tool on mobile. The required data visualization process involves complex data understanding and rendering, and most of the so-called "free" tools on the market have poor experience. It is recommended to use computer-side tools or use cloud services, or develop apps yourself to obtain more reliable conversion effects.

An application that converts XML directly to PDF cannot be found because they are two fundamentally different formats. XML is used to store data, while PDF is used to display documents. To complete the transformation, you can use programming languages and libraries such as Python and ReportLab to parse XML data and generate PDF documents.

Modifying XML content requires programming, because it requires accurate finding of the target nodes to add, delete, modify and check. The programming language has corresponding libraries to process XML and provides APIs to perform safe, efficient and controllable operations like operating databases.

XML formatting tools can type code according to rules to improve readability and understanding. When selecting a tool, pay attention to customization capabilities, handling of special circumstances, performance and ease of use. Commonly used tool types include online tools, IDE plug-ins, and command-line tools.

XML beautification is essentially improving its readability, including reasonable indentation, line breaks and tag organization. The principle is to traverse the XML tree, add indentation according to the level, and handle empty tags and tags containing text. Python's xml.etree.ElementTree library provides a convenient pretty_xml() function that can implement the above beautification process.

It is impossible to complete XML to PDF conversion directly on your phone with a single application. It is necessary to use cloud services, which can be achieved through two steps: 1. Convert XML to PDF in the cloud, 2. Access or download the converted PDF file on the mobile phone.

It is not easy to convert XML to PDF directly on your phone, but it can be achieved with the help of cloud services. It is recommended to use a lightweight mobile app to upload XML files and receive generated PDFs, and convert them with cloud APIs. Cloud APIs use serverless computing services, and choosing the right platform is crucial. Complexity, error handling, security, and optimization strategies need to be considered when handling XML parsing and PDF generation. The entire process requires the front-end app and the back-end API to work together, and it requires some understanding of a variety of technologies.
