Python – 从字符串中提取百分比
当需要从字符串中提取百分比时,可以使用正则表达式和程序包的“findall”方法。
示例
以下对其进行了说明 -
import re my_string = 'Python is % always fun % to learn % and teach' print("The list is : " ) print(my_string) my_result = re.findall('\d*%', my_string) print("The resultant list is : ") print(my_result)
输出
The list is : Python is % always fun % to learn % and teach The resultant list is : ['%', '%', '%']
说明
将必需的包导入环境。
定义一个字符串并将其显示在控制台上。
使用正则表达式包的“findall”方法定义一个模式并传递字符串以对其进行处理。
这将分配给一个变量。
此变量作为屏幕上的输出显示。
广告