search
HomeBackend DevelopmentPython TutorialDetailed explanation of Python string and dictionary related operations

This article mainly introduces relevant information about detailed examples of Python string and dictionary related operations. Here are examples to help you learn and understand this part of the content. Friends in need can refer to

Python Detailed examples of string and dictionary related operations

String operations:

String % formatting operations:


str = "Hello,%s.%s enough for ya ?"
values = ('world','hot')
print str % values

Output result:


 Hello,world.hot enough for ya ?

Template string:


##

#coding=utf-8
from string import Template
## 单个变量替换
s1 = Template('$x, glorious $x!')
print s1.substitute(x = 'slurm')

## 美元符号表示以及单个变量的替换
s2 = Template("Make $$ selling $x!")
print s2.substitute(x = 'slurm')

## 字段变量的替换
s3 = Template('A $thing must never $action .')
d = {}
d['thing'] = 'gentleman'
d['action'] = 'show his socks'
print s3.substitute(d)

ps:safe_substitute 不会因缺少值或者不正确使用$字符而出错。

String formatting type:

(1) % character: marks the beginning of the conversion specifier, which is the beginning of replacement.

(2) - means left alignment, + means adding a plus or minus sign before converting the value. 0 means that if there are not enough digits in the conversion value, fill it with 0s.
(3) * The minimum field width can be specified.
(4) A dot (.) is followed by the precision value.

String methods:

(1) find: You can find a substring in a longer string and return the leftmost index of the location of the substring. If not found, it returns -1.


print 'With a moo-moo here, and a moo-moo there'.find('moo')
返回:7

(2) join method: Splice the strings together.


print '/'.join((' ','usr','bin','env'))
输出: /usr/bin/env
ps:和谷歌的guava有点像。

(3) lower method: Returns the lowercase version of the string.


print 'AK47'.lower()
输出:ak47

(4) replace method: Returns the string obtained after all matches of a certain string are replaced.


'This is a test'.replace('is','ezz')
输出:Thezz ezz a test

(5) split method: the inverse method of join, which separates strings into sequences.


print '1+2+3+4+5'.split('+')
输出:['1', '2', '3', '4', '5']

(6) strip method: remove the strings on both sides. The default is a space string, you can also specify the corresponding string.


ps:另外可以参加lstrip和rstrip方法。

(7) translate method: Like the replace method, you can replace certain parts of the string, but unlike the former, the translate method only processes a single character. Its advantage is that it can perform multiple replacements at the same time, which is sometimes much more efficient than replace.


ps:maketrans方法和translate方法类似。

Basic operations of dictionary:

(1) dict method: used to construct dictionary data.


dict(name='Gumby',age=42)
dict([('name','Gumby'),('age',42)])
ps:都是构造字段的方法。

(2) Basic dictionary operations:

1. len(d) returns the number of items (key values) in d.

2. d[k] returns the value associated with key k.
3. d[k]=v associates value v to key k.
4. del d[k] deletes the item with key k.
5. k in d checks whether d contains an item with key k.

(3) The copy method returns a new dictionary with the same key-value pairs.

(4) fromkeys: method creates a new dictionary using the given keys, and the value corresponding to each key is None.


print {}.fromkeys(['name','age'])
输出:{'age': None, 'name': None}

(5) get method: The get method is a more relaxed dictionary item method.


d = {}
d['name'] 如此访问时会报错。
d.get('name')访问时,如果不存在会返回None。

(6) haskey: The haskey method can check whether the dictionary contains the given key. d.has_key(k) is equivalent to k in d.

(7) items and iteritems methods:


items方法会将字典按照键值元组列表的形式返回,但没有顺序。
iteritems和items类似,但是返回的是迭代器。

(8) keys and iterkeys are similar to items. This is a list or iterator that returns keys.

(9) The values ​​method returns the values ​​in the dictionary in list form. Unlike keys or iterkeys, the returned value can contain duplicate values.

(10) The update method can use one dictionary to update another dictionary.

The above is the detailed content of Detailed explanation of Python string and dictionary related operations. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
详细讲解Python之Seaborn(数据可视化)详细讲解Python之Seaborn(数据可视化)Apr 21, 2022 pm 06:08 PM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于Seaborn的相关问题,包括了数据可视化处理的散点图、折线图、条形图等等内容,下面一起来看一下,希望对大家有帮助。

详细了解Python进程池与进程锁详细了解Python进程池与进程锁May 10, 2022 pm 06:11 PM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于进程池与进程锁的相关问题,包括进程池的创建模块,进程池函数等等内容,下面一起来看一下,希望对大家有帮助。

Python自动化实践之筛选简历Python自动化实践之筛选简历Jun 07, 2022 pm 06:59 PM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于简历筛选的相关问题,包括了定义 ReadDoc 类用以读取 word 文件以及定义 search_word 函数用以筛选的相关内容,下面一起来看一下,希望对大家有帮助。

归纳总结Python标准库归纳总结Python标准库May 03, 2022 am 09:00 AM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于标准库总结的相关问题,下面一起来看一下,希望对大家有帮助。

Python数据类型详解之字符串、数字Python数据类型详解之字符串、数字Apr 27, 2022 pm 07:27 PM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于数据类型之字符串、数字的相关问题,下面一起来看一下,希望对大家有帮助。

分享10款高效的VSCode插件,总有一款能够惊艳到你!!分享10款高效的VSCode插件,总有一款能够惊艳到你!!Mar 09, 2021 am 10:15 AM

VS Code的确是一款非常热门、有强大用户基础的一款开发工具。本文给大家介绍一下10款高效、好用的插件,能够让原本单薄的VS Code如虎添翼,开发效率顿时提升到一个新的阶段。

详细介绍python的numpy模块详细介绍python的numpy模块May 19, 2022 am 11:43 AM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于numpy模块的相关问题,Numpy是Numerical Python extensions的缩写,字面意思是Python数值计算扩展,下面一起来看一下,希望对大家有帮助。

python中文是什么意思python中文是什么意思Jun 24, 2019 pm 02:22 PM

pythn的中文意思是巨蟒、蟒蛇。1989年圣诞节期间,Guido van Rossum在家闲的没事干,为了跟朋友庆祝圣诞节,决定发明一种全新的脚本语言。他很喜欢一个肥皂剧叫Monty Python,所以便把这门语言叫做python。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),