[转载] Python-Strings

参考链接: Python成员资格和身份运算符 | in, not in, is, is not

Strings 

 

介绍 

String是Python中最常用的类型。仅仅用引号括起字符就可以创建string变量。字符串使用单引号或双引号对Python来说是一样的。 

var1 = 'Hello World!'

var2 = "Python Programming" 

访问string的值 

Python不支持单字符类型,那些长度为1的字符串因为被认为是子字符串。为了获取子字符串,可以通过索引的方式,例 

var1 = 'Hello World!'

var2 = "Python Programming"

print("var1[0]: ", var1[0])

print("var2[1:5]: ", var2[1:5]) 

执行结果 

var1[0]:  H

var2[1:5]:  ytho 

更新Strings 

可以通过重新分配的方式更新一个字符串,新的字符串可以跟原来的相关或与不同的字符串组合,例 

var1 = 'Hello World!'

print("Updated String :- ", var1[:6] + 'Python') 

执行结果 

Updated String :-  Hello Python 

转义字符 

下表是可以使用反斜杠()表示的转义字符或不可以打印字符 

反斜杠表示十六进制字符描述\a0x07Bell or alert\b0x08Backspace\cxControl-x\C-xControl-x\e0x1bEscape\f0x0cFormfeed\M-\C-xMeta-Control-x\n0x0aNewline\nnnOctal notation, where n is in the range 0.7\r0x0dCarriage return\s0x20Space\t0x09Tab\v0x0bVertical tab\xCharacter x\xnnHexadecimal notation, where n is in the range 0.9, a.f, or A.F

String特殊操作符 

假设字符串变量a表示’Hello’, 字符串b表示’Python",因此 

操作符描述示例+结合 - 在运算符的任意一侧添加值a + b 表示HelloPython*重复 - 创建一个新的字符串,是原字符串的多次拷贝a*2 表示 HelloHello[]切片 - 表示指定索引的字符a[1] 表示 e[:]范围切片 - 表示指定范围的字符a[1:4] 表示 ellin成员资格 - 如果字符在指定的字符串中返回True‘H’ in a 表示Truenot in成员资格 - 如果字符不在指定的字符串中返回True‘M’ not in a 表示Truer或R原始字符串 - 放在字符串前,告诉编译器输出元素字符,不要转义,r或R都可以打开文件的路径:r"Directory"%格式化 - 格式化字符串建议使用Format语句

三个双引号 

Python的三个双引号允许字符串跨越多行,可包含特殊字符,打印出其效果。 

para_str = """this is a long string that is made up of

several lines and non-printable characters such as

TAB ( \t ) and they will show up that way when displayed.

NEWLINEs within the string, whether explicitly given like

this within the brackets [ \n ], or just a NEWLINE within

the variable assignment will also show up.

"""

print(para_str) 

执行结果 

this is a long string that is made up of

several lines and non-printable characters such as

TAB (   ) and they will show up that way when displayed.

NEWLINEs within the string, whether explicitly given like

this within the brackets [ 

 ], or just a NEWLINE within

the variable assignment will also show up. 

Unicode字符串 

通常字符串在Python中以8位ASCII码存储,而Unicode字符串以16位的统一码存储。这样就允许更多样化的字符,包括世界上大多数的语言特殊字符。 

print(u'Hello, world!') 

执行结果 

Hello, world! 

String内置方法 

Sr.No.方法描述1capitalize() Capitalizes first letter of string2center(width, fillchar) Returns a space-padded string with the original string centered to a total of width columns3count(str, start= 0,end=len(string)) Counts how many times str occurs in string or in a substring of string if starting index start and ending index end are given.4decode(encoding=‘UTF-8’,errors=‘strict’) Decodes the string using the codec registered for encoding. encoding defaults to the default string encoding.5encode(encoding=‘UTF-8’,errors=‘strict’) Returns encoded string version of string; on error, default is to raise a ValueError unless errors is given with ‘ignore’ or ‘replace’.6endswith(suffix, beg=0, end=len(string)) Determines if string or a substring of string (if starting index beg and ending index end are given) ends with suffix; returns true if so and false otherwise.7expandtabs(tabsize=8) Expands tabs in string to multiple spaces; defaults to 8 spaces per tab if tabsize not provided.8find(str, beg=0 end=len(string)) Determine if str occurs in string or in a substring of string if starting index beg and ending index end are given returns index if found and -1 otherwise.9index(str, beg=0, end=len(string)) Same as find(), but raises an exception if str not found.10isalnum() Returns true if string has at least 1 character and all characters are alphanumeric and false otherwise.11isalpha() Returns true if string has at least 1 character and all characters are alphabetic and false otherwise.12isdigit() Returns true if string contains only digits and false otherwise.13islower() Returns true if string has at least 1 cased character and all cased characters are in lowercase and false otherwise.14isnumeric() Returns true if a unicode string contains only numeric characters and false otherwise15isspace() Returns true if string contains only whitespace characters and false otherwise.16istitle() Returns true if string is properly “titlecased” and false otherwise.17isupper() Returns true if string has at least one cased character and all cased characters are in uppercase and false otherwise.18join(seq) Merges (concatenates) the string representations of elements in sequence seq into a string, with separator string.19len(string) Returns the length of the string20ljust(width[, fillchar]) Returns a space-padded string with the original string left-justified to a total of width columns.21lower() Converts all uppercase letters in string to lowercase22lstrip() Removes all leading whitespace in string.23maketrans() Returns a translation table to be used in translate function24max(str) Returns the max alphabetical character from the string str.25min(str) Returns the min alphabetical character from the string str26replace(old, new [, max]) Replaces all occurrences of old in string with new or at most max occurrences if max given.27rfind(str, beg=0,end=len(string)) Same as find(), but search backwards in string.28rindex( str, beg=0, end=len(string)) Same as index(), but search backwards in string29rjust(width,[, fillchar]) Returns a space-padded string with the original string right-justified to a total of width columns.30rstrip() Removes all trailing whitespace of string.31split(str="", num=string.count(str)) Splits string according to delimiter str (space if not provided) and returns list of substrings; split into at most num substrings if given32splitlines( num=string.count(’\n’)) Splits string at all (or num) NEWLINEs and returns a list of each line with NEWLINEs removed.33startswith(str, beg=0,end=len(string)) Determines if string or a substring of string (if starting index beg and ending index end are given) starts with substring str; returns true if so and false otherwise.34strip([chars]) Performs both lstrip() and rstrip() on string.35swapcase() Inverts case for all letters in string.36title() Returns “titlecased” version of string, that is, all words begin with uppercase and the rest are lowercase.37translate(table, deletechars="") Translates string according to translation table str(256 chars), removing those in the del string.38upper() Converts lowercase letters in string to uppercase.39zfill (width) Returns original string leftpadded with zeros to a total of width characters; intended for numbers, zfill() retains any sign given (less one zero).40isdecimal() Returns true if a unicode string contains only decimal characters and false otherwise.

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/540507.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

aes-128算法加密_加密算法问题-人工智能中的一种约束满意问题

aes-128算法加密The Crypt-Arithmetic problem in Artificial Intelligence is a type of encryption problem in which the written message in an alphabetical form which is easily readable and understandable is converted into a numeric form which is neither easily…

读书笔记《集体智慧编程》Chapter 2 : Make Recommendations

本章概要本章主要介绍了两种协同过滤(Collaborative Filtering)算法,用于个性化推荐:基于用户的协同过滤(User-Based Collaborative Filtering,又称 K-Nearest Neighbor Collaborative Filtering&#xff0…

[转载] python中的for循环对象和循环退出

参考链接: Python中循环 流程控制-if条件 判断条件,1位true,0是flesh,成立时true,不成立flesh,not取反 if 1; print hello python print true not取反,匹配取反,表示取非1…

设计一个应用程序,以在C#中的按钮单击事件上在MessageBox中显示TextBox中的文本...

Here, we took two controls on windows form that are TextBox and Button, named txtInput and btnShow respectively. We have to write C# code to display TextBox’s text in the MessageBox on Button Click. 在这里,我们在Windows窗体上使用了两个控件&…

Oracle优化器:星型转换(Star Query Transformation )

Oracle优化器:星型转换(Star Query Transformation )Star query是一个事实表(fact table)和一些维度表(dimension)的join。每个维度表都跟事实表通过主外键join,且每个维度表之间不j…

[转载] python循环中break、continue 、exit() 、pass的区别

参考链接: Python中的循环和控制语句(continue, break and pass) 1、break:跳出循环,不再执行 用在while和for循环中 用来终止循环语句,即循环条件没有False条件或者序列还没被完全递归完,也会停止执行循环语句 如果…

JavaScript | 声明数组并使用数组索引分配元素的代码

Declare an array, assign elements by indexes and print all elements in JavaScript. 声明一个数组&#xff0c;通过索引分配元素&#xff0c;并打印JavaScript中的所有元素。 Code: 码&#xff1a; <html><head><script>var fruits [];fruits[0]"…

[转载] Python入门(输入/输出、数据类型、条件/循环语句)

参考链接&#xff1a; Python中的循环技术 在介绍之前我们先来看看计算机的三个根本性基础&#xff1a; 1.计算机是执行输入、运算、输出的机器 2.程序是指令和数据的集合 3.计算机的处理方式有时与人们的思维习惯不同 &#xff08;以上是引自《计算机是怎样跑起来的》…

第5章 函数与函数式编程

第5章 函数与函数式编程 凡此变数中函彼变数者&#xff0c;则此为彼之函数。 ( 李善兰《代数学》) 函数式编程语言最重要的基础是λ演算&#xff08;lambda calculus&#xff09;&#xff0c;而且λ演算的函数可以传入函数参数&#xff0c;也可以返回一个函数。函数式编程 (简称…

mcq 队列_人工智能能力问答中的人工智能概率推理(MCQ)

mcq 队列1) Which of the following correctly defines the use of probabilistic reasoning in AI systems? In situations of uncertainty, probabilistic theory can help us give an estimate of how much an event is likely to occur or happen.It helps to find the pr…

[转载] Python中的xrange和range的区别

参考链接&#xff1a; Python中的range()和xrange() 在python2 中 range(start,end,step)返回一个列表&#xff0c;返回的结果是可迭代对象&#xff0c;但不是迭代器。iter()转化为列表迭代器。xrange()返回的是一个序列&#xff0c;他也是可迭代对象&#xff0c;但不是迭代…

Kubernetes基础组件概述

本文讲的是Kubernetes基础组件概述【编者的话】最近总有同学问Kubernetes中的各个组件的相关问题&#xff0c;其实这些概念内容在官方文档中都有&#xff0c;奈何我们有些同学可能英文不好&#xff0c;又或者懒得去看&#xff0c;又或者没有找到&#xff0c;今天有时间就专门写…

c语言将链表写入二进制文件_通过逐级遍历将二进制树转换为单链表的C程序

c语言将链表写入二进制文件Problem statement: Write a C program to convert a binary tree into a single linked list by traversing level-wise. 问题陈述&#xff1a;编写一个C程序&#xff0c;通过逐级遍历将二进制树转换为单个链表 。 Example: 例&#xff1a; The ab…

[转载] C Primer Plus 第6章 C控制语句 6.16 编程练习及答案

参考链接&#xff1a; 用Python打印金字塔图案的程序 2019独角兽企业重金招聘Python工程师标准>>> 1、编写一个程序&#xff0c;创建一个具有26个元素的数组&#xff0c;并在其中存储26个小写字母。并让该程序显示该数组的内容。 #include int main (void) { …

C# String和string的区别

C#中同时存在String与string MSDN中对string的说明&#xff1a; string is an alias for String in the .NET Framework。string是String的别名而已&#xff0c;string是c#中的类&#xff0c;String是Framework的类&#xff0c;C# string 映射为 Framework的 String。如果用str…

要求用户在Python中输入整数| 限制用户仅输入整数值

input() function can be used for the input, but it reads the value as a string, then we can use the int() function to convert string value to an integer. input()函数可用于输入&#xff0c;但它将值读取为字符串&#xff0c;然后可以使用int()函数将字符串值转换为…

[转载] python——if语句、逻辑运算符号

参考链接&#xff1a; 用Python链接比较运算符 1.if条件判断语句&#xff1a; if 要判断的条件(True): 条件成立的时候&#xff0c;要做的事情 elif 要判断的条件(True): .... elif 要判断的条件(True): .... else: 条件不成立的时候要做的事情 示例&#xff1a; 判断学生…

洛谷 P2689 东南西北【模拟/搜索】

题目描述 给出起点和终点的坐标及接下来T个时刻的风向(东南西北)&#xff0c;每次可以选择顺风偏移1个单位或者停在原地。求到达终点的最少时间。 如果无法偏移至终点&#xff0c;输出“-1”。 输入输出格式 输入格式&#xff1a; 第一行两个正整数x1,y1&#xff0c;表示小明所…

单链表遍历_单链表及其遍历实现的基本操作

单链表遍历单链表 (Single linked list) Single linked list contains a number of nodes where each node has a data field and a pointer to next node. The link of the last node is to NULL, indicates end of list. 单个链表包含许多节点&#xff0c;其中每个节点都有一…

[转载] python中for语句用法_详解Python中for循环的使用_python

参考链接&#xff1a; 在Python中将else条件语句与for循环一起使用 这篇文章主要介绍了Python中for循环的使用,来自于IBM官方网站技术文档,需要的朋友可以参考下 for 循环 本系列前面 “探索 Python&#xff0c;第 5 部分&#xff1a;用 Python 编程” 一文讨论了 if 语句和…