卓越飞翔博客卓越飞翔博客

卓越飞翔 - 您值得收藏的技术分享站
技术文章18654本站已运行341

Python程序:输入逗号分隔的字符串

Python程序:输入逗号分隔的字符串

当输入文本字符串或作为输入给出时,其间可能有逗号。有时,任务是分隔句子或文本字符串的所有逗号分隔部分。这些部分可以具有单个单词或多个单词。这些字符串部分可以作为列表项进一步输入或者可以进一步处理。同样,也需要输入整数形式或小数形式的数字,并用逗号分隔。在这种情况下,将它们理解为数字很重要。本文通过使用四个不同的示例,演示了给定逗号分隔的字符串或句子或数字,并通过 Python 程序理解其逗号分隔结构来处理它的过程。

示例 1 - 输入逗号分隔字符串并使用 split 函数查找逗号分隔部分的程序

算法

第 1 步 - 首先输入一个以逗号分隔的字符串。

步骤 2 - 使用 split 函数将逗号分隔的部分分隔成列表。

第 3 步 - 删除列表项左侧的空格。

第 4 步 - 删除列表项右侧的空格。

第 5 步 - 运行程序,然后检查结果。

Python 文件包含此

'
commaSepStr = input ("Enter a comma separated String:")
list1 = commaSepStr.split(",")

def removeLspace(list):
   return [item.lstrip() for item in list]
    
print(commaSepStr)
print(list1)

def removeRspace(list):
   return [item.rstrip() for item in list]

noextraleftspace_list = removeLspace(list1)
noextrarightspace_list = removeRspace(noextraleftspace_list)

print(noextrarightspace_list)
print(*noextrarightspace_list, sep = "n")

查看结果 - 示例 1

要查看结果,请在 cmd 窗口中运行 Python 文件。

'
Enter a comma separated String :Our last night plate included two rotis,daal,mixveg, rice, paneer, salad and achaar
Our last night plate included two rotis,daal,mixveg, rice, paneer, salad and achaar
['Our last night plate included two rotis', 'daal', 'mixveg', ' rice', ' paneer', ' salad and achaar']
['Our last night plate included two rotis', 'daal', 'mixveg', 'rice', 'paneer', 'salad and achaar']
Our last night plate included two rotis
daal
mixveg
rice
paneer
salad and achaar

示例 2:输入逗号分隔字符串并使用“for”循环查找逗号分隔部分的程序。

算法

第 1 步 - 首先给出一个以逗号分隔的输入字符串。

第 2 步 - 逐个字符地遍历字符串并识别逗号分隔的部分并将它们附加到列表中。

第 3 步 - 删除列表项左侧的空格。

第 4 步 - 打印包含没有多余空格的项目的列表。

第 5 步 - 运行程序,然后检查结果。

Python 文件包含此

'
commaSepStr = input ("Enter a comma separated String :")

print("The Entered String is: " + commaSepStr)
 
startofItem = 0
list1=[]
for item in range(len(commaSepStr)):
   if commaSepStr[item] == ',':
      # characters from startofItem to comma
      nospaceitem=commaSepStr[startofItem:item].lstrip()
      list1.append(nospaceitem)
      startofItem = item+1
      print(nospaceitem)

# characters from startofItem to end
nospaceitem=commaSepStr[startofItem:].lstrip()        
print(nospaceitem)
list1.append(nospaceitem)
print(list1))

查看结果

打开cmd窗口并运行python文件查看结果。

'
Enter a comma separated String :Our last night plate included two rotis,daal,mixveg, rice, paneer, salad and achaar
The Entered String is: Our last night plate included two rotis,daal,mixveg, rice, paneer, salad and achaar
Our last night plate included two rotis
daal
mixveg
rice
paneer
salad and achaar
['Our last night plate included two rotis', 'daal', 'mixveg', 'rice', 'paneer', 'salad and achaar']

示例 3 - 输入逗号分隔的整数字符串的程序

算法

步骤 1 - 首先输入一个以逗号分隔且仅包含整数的字符串。

第 2 步 - 使用 split 函数将逗号分隔的整数分隔成字符串列表。

第 3 步 - 从此字符串列表中获取每个项目,并将它们转换为整数类型,并将它们作为整数附加到另一个列表。

第 4 步 - 运行程序,然后检查结果。

Python 文件包含此

'
# input comma-separated numbers as string 
strInput = input ("Enter comma separated integers: ")
print( "Input string: ", strInput)

# convert to the list
strlist = strInput.split(",")
print("list of string type numbers: ", strlist)

# convert each string element as integers
list1 = []
for item in strlist:
	list1.append(int(item))

# print list as integers
print("list of integers: ", list1)

查看结果 - 示例 3

要查看结果,请在 cmd 窗口中运行 Python 文件。

'
Enter comma separated integers: 101, 280, 98, 185, 934, 9684, 955, 20, 34
Input string:  101, 280, 98, 185, 934, 9684, 955, 20, 34
list of string type numbers:  ['101', ' 280', ' 98', ' 185', ' 934', ' 9684', ' 955', ' 20', ' 34']
list of integers:  [101, 280, 98, 185, 934, 9684, 955, 20, 34]

示例 4:输入具有十进制数字的逗号分隔字符串的程序

第 1 步 - 首先输入一个以逗号分隔的字符串,并且仅包含整数和小数。

步骤 2 - 使用 split 函数来识别逗号分隔的数字并将它们作为字符串附加到列表中。

第 3 步 - 从此字符串列表中取出每个数字,并将它们转换为浮点类型,并将它们作为小数附加到另一个列表。

第 4 步 - 运行程序,然后检查结果。

Python 文件包含此

'
# input comma separated numbers as string 
strInput = input ("Enter comma separated numbers: ")
print( "Input string: ", strInput)

# convert to the list
strlist = strInput.split (",")
print("list of string type numbers: ", strlist)

# convert each string element as integers
list1 = []
for item in strlist:
	list1.append(float(item))

# print list as integers
print("list of decimal numbers: ", list1)

查看结果 - 示例 4

打开cmd窗口并运行python文件查看结果。

'
Enter comma-separated numbers: 102.88, 6.5, 6767.907, 5555.3, 4545, 6677,56.009
Input string:  102.88, 6.5, 6767.907, 5555.3, 4545, 6677,56.009
list of string type numbers:  ['102.88', ' 6.5', ' 6767.907', ' 5555.3', ' 4545', ' 6677', '56.009']
list of decimal numbers:  [102.88, 6.5, 6767.907, 5555.3, 4545.0, 6677.0, 56.009]

图 4:显示具有十进制数字的输入字符串中以逗号分隔的部分的列表。

在这篇 Python 文章中,使用四个不同的示例,给出了如何输入逗号分隔字符串的方法。首先,在示例 1 中,使用 split 函数将字符串的各个部分用逗号分隔。在示例 2 中,通过检查所有字符来遍历字符串来识别逗号分隔的部分。在示例 3 中,整数作为字符串输入,在示例 4 中,十进制数作为输入字符串给出,然后分隔到列表中。

卓越飞翔博客
上一篇: 技术升级:掌握这些PHP开发技能,轻松拿下10K
下一篇: 返回列表
留言与评论(共有 0 条评论)
   
验证码:
隐藏边栏