Python-strenger (med eksempler)

I denne opplæringen lærer du å lage, formatere, endre og slette strenger i Python. Du vil også bli introdusert for ulike strengoperasjoner og funksjoner.

Video: Python Strings

Hva er streng i Python?

En streng er en sekvens av tegn.

En karakter er rett og slett et symbol. For eksempel har det engelske språket 26 tegn.

Datamaskiner håndterer ikke tegn, de håndterer tall (binær). Selv om du kanskje ser tegn på skjermen, lagres den og manipuleres internt som en kombinasjon av 0 og 1.

Denne konverteringen av tegn til et tall kalles koding, og den omvendte prosessen er dekoding. ASCII og Unicode er noen av de populære kodingene som brukes.

I Python er en streng en sekvens av Unicode-tegn. Unicode ble introdusert for å inkludere alle tegn på alle språk og bringe ensartethet i koding. Du kan lære om Unicode fra Python Unicode.

Hvordan lage en streng i Python?

Strenger kan opprettes ved å legge inn tegn i et enkelt sitat eller dobbelt anførselstegn. Selv tredoble anførselstegn kan brukes i Python, men vanligvis brukes til å representere flerlinjede strenger og docstrings.

 # defining strings in Python # all of the following are equivalent my_string = 'Hello' print(my_string) my_string = "Hello" print(my_string) my_string = '''Hello''' print(my_string) # triple quotes string can extend multiple lines my_string = """Hello, welcome to the world of Python""" print(my_string)

Når du kjører programmet, vil utdataene være:

 Hallo Hei Hei Hei, velkommen til Pythons verden

Hvordan få tilgang til tegn i en streng?

Vi har tilgang til individuelle tegn ved hjelp av indeksering og en rekke tegn ved hjelp av kutting. Indeks starter fra 0. Å prøve å få tilgang til et tegn utenfor indeksområdet vil heve et IndexError. Indeksen må være et helt tall. Vi kan ikke bruke flottører eller andre typer, dette vil resultere i TypeError.

Python tillater negativ indeksering for sekvensene.

Indeksen for -1refererer til den siste varen, -2til den nest siste varen og så videre. Vi kan få tilgang til en rekke elementer i en streng ved å bruke skiveroperatoren :(kolon).

 #Accessing string characters in Python str = 'programiz' print('str = ', str) #first character print('str(0) = ', str(0)) #last character print('str(-1) = ', str(-1)) #slicing 2nd to 5th character print('str(1:5) = ', str(1:5)) #slicing 6th to 2nd last character print('str(5:-2) = ', str(5:-2))

Når vi kjører programmet ovenfor, får vi følgende utdata:

 str = programiz str (0) = p str (-1) = z str (1: 5) = rogr str (5: -2) = am

Hvis vi prøver å få tilgang til en indeks utenfor området eller bruke andre tall enn et heltall, får vi feil.

 # index must be in range >>> my_string(15)… IndexError: string index out of range # index must be an integer >>> my_string(1.5)… TypeError: string indices must be integers

Oppskjæring kan best visualiseres ved å betrakte indeksen som mellom elementene som vist nedenfor.

Hvis vi vil ha tilgang til et område, trenger vi indeksen som vil skjære delen fra strengen.

String Slicing i Python

Hvordan endre eller slette en streng?

Strenger er uforanderlige. Dette betyr at elementene i en streng ikke kan endres når de er tildelt. Vi kan ganske enkelt tildele forskjellige strenger til samme navn.

 >>> my_string = 'programiz' >>> my_string(5) = 'a'… TypeError: 'str' object does not support item assignment >>> my_string = 'Python' >>> my_string 'Python'

Vi kan ikke slette eller fjerne tegn fra en streng. Men å slette strengen helt er mulig ved å bruke delnøkkelordet.

 >>> del my_string(1)… TypeError: 'str' object doesn't support item deletion >>> del my_string >>> my_string… NameError: name 'my_string' is not defined

Python-strengoperasjoner

Det er mange operasjoner som kan utføres med strenger som gjør den til en av de mest brukte datatypene i Python.

For å lære mer om datatypene som er tilgjengelige i Python, besøk: Python Data Typer

Sammenkobling av to eller flere strenger

Joining of two or more strings into a single one is called concatenation.

The + operator does this in Python. Simply writing two string literals together also concatenates them.

The * operator can be used to repeat the string for a given number of times.

 # Python String Operations str1 = 'Hello' str2 ='World!' # using + print('str1 + str2 = ', str1 + str2) # using * print('str1 * 3 =', str1 * 3)

When we run the above program, we get the following output:

 str1 + str2 = HelloWorld! str1 * 3 = HelloHelloHello

Writing two string literals together also concatenates them like + operator.

If we want to concatenate strings in different lines, we can use parentheses.

 >>> # two string literals together >>> 'Hello ''World!' 'Hello World!' >>> # using parentheses >>> s = ('Hello '… 'World') >>> s 'Hello World'

Iterating Through a string

We can iterate through a string using a for loop. Here is an example to count the number of 'l's in a string.

 # Iterating through a string count = 0 for letter in 'Hello World': if(letter == 'l'): count += 1 print(count,'letters found')

When we run the above program, we get the following output:

 3 letters found

String Membership Test

We can test if a substring exists within a string or not, using the keyword in.

 >>> 'a' in 'program' True >>> 'at' not in 'battle' False

Built-in functions to Work with Python

Various built-in functions that work with sequence work with strings as well.

Some of the commonly used ones are enumerate() and len(). The enumerate() function returns an enumerate object. It contains the index and value of all the items in the string as pairs. This can be useful for iteration.

Similarly, len() returns the length (number of characters) of the string.

 str = 'cold' # enumerate() list_enumerate = list(enumerate(str)) print('list(enumerate(str) = ', list_enumerate) #character count print('len(str) = ', len(str))

When we run the above program, we get the following output:

 list(enumerate(str) = ((0, 'c'), (1, 'o'), (2, 'l'), (3, 'd')) len(str) = 4

Python String Formatting

Escape Sequence

If we want to print a text like He said, "What's there?", we can neither use single quotes nor double quotes. This will result in a SyntaxError as the text itself contains both single and double quotes.

 >>> print("He said, "What's there?"")… SyntaxError: invalid syntax >>> print('He said, "What's there?"')… SyntaxError: invalid syntax

One way to get around this problem is to use triple quotes. Alternatively, we can use escape sequences.

An escape sequence starts with a backslash and is interpreted differently. If we use a single quote to represent a string, all the single quotes inside the string must be escaped. Similar is the case with double quotes. Here is how it can be done to represent the above text.

 # using triple quotes print('''He said, "What's there?"''') # escaping single quotes print('He said, "What\'s there?"') # escaping double quotes print("He said, "What's there? "")

When we run the above program, we get the following output:

 He said, "What's there?" He said, "What's there?" He said, "What's there?"

Here is a list of all the escape sequences supported by Python.

Escape Sequence Description
ewline Backslash and newline ignored
\ Backslash
\' Single quote
" Double quote
a ASCII Bell
 ASCII Backspace
f ASCII Formfeed
ASCII Linefeed
ASCII Carriage Return
ASCII Horizontal Tab
v ASCII Vertical Tab
ooo Character with octal value ooo
xHH Character with hexadecimal value HH

Here are some examples

 >>> print("C:\Python32\Lib") C:Python32Lib >>> print("This is printedin two lines") This is printed in two lines >>> print("This is x48x45x58 representation") This is HEX representation

Raw String to ignore escape sequence

Sometimes we may wish to ignore the escape sequences inside a string. To do this we can place r or R in front of the string. This will imply that it is a raw string and any escape sequence inside it will be ignored.

 >>> print("This is x61 good example") This is a good example >>> print(r"This is x61 good example") This is x61 good example

The format() Method for Formatting Strings

The format() method that is available with the string object is very versatile and powerful in formatting strings. Format strings contain curly braces () as placeholders or replacement fields which get replaced.

We can use positional arguments or keyword arguments to specify the order.

 # Python string format() method # default(implicit) order default_order = "(), () and ()".format('John','Bill','Sean') print('--- Default Order ---') print(default_order) # order using positional argument positional_order = "(1), (0) and (2)".format('John','Bill','Sean') print('--- Positional Order ---') print(positional_order) # order using keyword argument keyword_order = "(s), (b) and (j)".format(j='John',b='Bill',s='Sean') print('--- Keyword Order ---') print(keyword_order)

When we run the above program, we get the following output:

 --- Default Order --- John, Bill and Sean --- Positional Order --- Bill, John and Sean --- Keyword Order --- Sean, Bill and John

The format() method can have optional format specifications. They are separated from the field name using colon. For example, we can left-justify <, right-justify > or center ^ a string in the given space.

Vi kan også formatere heltall som binært, heksadesimalt, etc., og flyter kan avrundes eller vises i eksponentformatet. Det er mange formateringer du kan bruke. Besøk her for all strengformatering som er tilgjengelig med format()metoden.

 >>> # formatting integers >>> "Binary representation of (0) is (0:b)".format(12) 'Binary representation of 12 is 1100' >>> # formatting floats >>> "Exponent representation: (0:e)".format(1566.345) 'Exponent representation: 1.566345e+03' >>> # round off >>> "One third is: (0:.3f)".format(1/3) 'One third is: 0.333' >>> # string alignment >>> "|(:10)|".format('butter','bread','ham') '|butter | bread | ham|'

Gammel stilformatering

Vi kan til og med formatere strenger som den gamle sprintf()stilen som ble brukt i C-programmeringsspråk. Vi bruker %operatøren for å oppnå dette.

 >>> x = 12.3456789 >>> print('The value of x is %3.2f' %x) The value of x is 12.35 >>> print('The value of x is %3.4f' %x) The value of x is 12.3457

Vanlige Python-strengmetoder

Det er mange metoder tilgjengelig med strengobjektet. Den format()metoden som vi nevnte ovenfor, er en av dem. Noen av de mest brukte metodene er lower(), upper(), join(), split(), find(), replace()etc. Her er en komplett liste over alle de innebygde metoder for å arbeide med strenger i Python.

 >>> "PrOgRaMiZ".lower() 'programiz' >>> "PrOgRaMiZ".upper() 'PROGRAMIZ' >>> "This will split all words into a list".split() ('This', 'will', 'split', 'all', 'words', 'into', 'a', 'list') >>> ' '.join(('This', 'will', 'join', 'all', 'words', 'into', 'a', 'string')) 'This will join all words into a string' >>> 'Happy New Year'.find('ew') 7 >>> 'Happy New Year'.replace('Happy','Brilliant') 'Brilliant New Year'

Interessante artikler...