使用 Python 从作为字符串给出的数字中删除前导零

news/2024/11/15 5:45:02/

使用的方法

以下是用于完成此任务的各种方法 -

  • 使用 For 循环和 remove() 函数
  • 使用正则表达式
  • 使用 int() 函数

方法 1:使用 For 循环和 remove() 函数

算法(步骤)

以下是执行所需任务要遵循的算法/步骤。−

  • 创建一个函数 deleteLeadingZeros(),该函数从作为字符串传递给函数的数字中删除前导零。
  • 使用 for 循环,使用 len() 函数遍历字符串的长度。
  • len() 函数 − 对象中的项数由 len() 方法返回。当对象是字符串时,len() 函数返回字符串中的字符数。
  • 使用 if 条件语句和 != 运算符检查字符串中的当前字符是否不为 0
  • 使用切片获取前导零之后的字符串的剩余字符。
  • 从输入字符串中删除所有前导 0 后返回结果字符串。
  • 如果未找到前导 0,则返回 0。
  • 创建一个变量来存储作为字符串传递的输入数字。
  • 调用上面定义的 deleteLeadingZeros() 函数,方法是将输入字符串传递给它,以便在删除前导零后获取结果字符串。
  • 以同样的方式检查没有前导零的其他字符串。

以下程序以字符串的形式返回,该字符串使用 for 循环和 remove() 函数从作为字符串传递的数字中删除所有前导零 −

# creating a function that removes the leading zeros # from a number passed as a string to the function def deleteLeadingZeros(inputString):    # traversing through the length of the string    for k in range(len(inputString)):       # checking whether the current character of a string is not 0       if inputString[k] != '0':          # getting the remaining string using slicing          outputString= inputString[k::]          # returning resultant string after removing leading 0s          return outputString    # returning 0 if there are no leading 0s found in the entire string    return "0" # input number as a string inputString = "0002056" print("Given String is:", inputString) # calling the deleteLeadingZeros() function by passing the input string to it print("After Removing Leading Zeros:", deleteLeadingZeros(inputString)) # checking it for other strings having no leading 0s inputString = "256" print("Given String is:", inputString) # calling the deleteLeadingZeros() function by passing the input string to it print("After Removing Leading Zeros:", deleteLeadingZeros(inputString))

复制

输出

在执行时,上述程序将生成以下输出 -

Given String is: 0002056 After Removing Leading Zeros: 2056 Given String is: 256 After Removing Leading Zeros: 256

复制

方法 2:使用正则表达式

算法(步骤)

以下是执行所需任务要遵循的算法/步骤。−

  • 使用 import 关键字导入正则表达式(re) 模块。
  • 创建一个函数 deleteLeadingZeros(),该函数从作为字符串传递给函数的数字中删除前导零。
  • 创建一个变量来存储用于从输入字符串中删除前导零的正则表达式模式。
  • 使用 sub() 函数将匹配的正则表达式模式替换为空字符串。
  • sub() 函数(返回一个字符串,其中给定模式的所有匹配匹配项都替换为替换字符串)。
  • 从输入字符串中删除所有前导 0 后打印生成的字符串。

以下程序以字符串形式返回,该字符串使用正则表达式从作为字符串传递的数字中删除所有前导零 -

# importing re module import re # creating a function that removes the leading zeros # from a number passed as a string to the function def deleteLeadingZeros(inputString):    # regex pattern for removing leading zeros from an input string    regexPattern = "^0+(?!$)"    # Replace the matched regex pattern with an empty string    outputString = re.sub(regexPattern, "", inputString)    # returning output string after removing leading 0s    return outputString # input number as a string inputString = "0002056" print("Given String is:", inputString) # calling the deleteLeadingZeros() function by passing the input string to it print("After Removing Leading Zeros:", deleteLeadingZeros(inputString))

复制

输出

在执行时,上述程序将生成以下输出 -

Given String is: 0002056 After Removing Leading Zeros: 2056

复制

方法 3:使用 int() 函数

算法(步骤)

以下是执行所需任务要遵循的算法/步骤。−

  • 创建一个函数 deleteLeadingZeros(),该函数从作为字符串传递给函数的数字中删除前导零。
  • 使用 int() 函数(从给定对象返回一个整数)将输入字符串转换为整数。此函数删除所有前导零。
  • 从输入字符串中删除所有前导 0 后返回结果数字。

以下程序返回为一个数字,该数字使用 int() 函数从作为字符串传递的数字中删除所有前导零 -

# creating a function that removes the leading zeros # from a number passed as a string to the function def deleteLeadingZeros(inputString):    # converting the input string to an integer removes all the leading zeros    result = int(inputString)    # returning the resultant number after removing leading zeros    return result # input number as a string inputString = "0002056" print("Given String is:", inputString) # calling the deleteLeadingZeros() function by passing the input string to it print("After Removing Leading Zeros:", deleteLeadingZeros(inputString))

复制

输出

在执行时,上述程序将生成以下输出 -

Given String is: 0002056 After Removing Leading Zeros: 2056

http://www.ppmy.cn/news/175691.html

相关文章

戴尔笔记本电脑光驱装固态,并设置为系统盘教程

本人笔记本电脑型号为Dell Insoriration 15-3576 拆机教程,并把新换的硬盘装到光驱位置,注意光驱排线插在键盘下,螺丝放好,容易丢,https://haokan.baidu.com/v?pdwisenatural&vid9785087749312452589 装好之后&am…

​戴尔科技集团+微软Azure Stack HCI:引领混合云上云新范式

目前混合云正在成为企业上云的主流选择,这是因为混合云的优势在于能够适应不同的部署需求,既能提供私有云的安全性,也能提供公有云的开放性,因此这也让混合云架构被越来越多的企业所认可并采用。 值得注意的是,作为混合…

戴尔+UnitedStack托管云:不是偶然的合作

云的分布式架构提供了更高程度的弹性和可靠性。 基于开源的OpenStack是最好的云平台技术之一,更有利于最大化用户投资。 戴尔与UnitedStack合作,不仅带来全功能的云计算平台,完善的持续集成体系更为用户持续交付新的价值。 当戴尔与UnitedSta…

新基建新机遇新赋能,戴尔科技吹响Power集结号

每一次技术变革与行业进步,都离不开善于创新、善于赋能的企业。 在遭遇全球疫情的影响下,数字化形态和创新数字基建正在呈现前所未有的发展趋势。深耕中国市场20余年,戴尔科技集团始终不遗余力地推动数字化转型和信息化发展。 自2015年以来&a…

【观察】戴尔科技:引领超融合现代化升级,加速企业迈向多云时代

申耀的科技观察 读懂科技,赢取未来! 众所周知,超融合自诞生以来,几乎很快就赢得了市场各方的认可,并从一个相对较小范围的应用领域,逐渐成长为目前企业构建软件定义数据中心,乃至未来实现多云管…

【观察】15季度位列第一,揭秘戴尔超融合家族的“统治力”

申耀的科技观察 读懂科技,赢取未来! 最近几年,超融合在中国市场的火爆程度不亚于云计算、人工智能等新技术,自2013年超融合概念首次在中国出现;到2016年中国迎来“超融合元年”;再到这两年超融合开始广泛落…

重塑远程办公生态 戴尔如何助力企业攀登数字高峰?

11月18日,一年一度的戴尔科技峰会在北京通过线上举办,本次峰会提出“以科技之名,致敬攀登者”主题。恰逢我国2021-2025第十四个五年规划即将提出,正是中国乘势而上,谋篇布局的关键时期;更是数字中国建设向纵…

2011年秋戴尔发布的EqualLogic 主机软件简介

作者:EqualLogic产品营销经理Shanky Chandra Gowri EqualLogic主机软件系列包含以下产品: Host Integration Tools for Microsoft (HIT/Microsoft)Host Integration Tools for VMware (HIT/VMware)Host Integration Tools for Linux (HIT/Linux) andSAN …