
当输入文本字符串或作为输入给出时,其间可能有逗号。有时,任务是分隔句子或文本字符串的所有逗号分隔部分。这些部分可以具有单个单词或多个单词。这些字符串部分可以作为列表项进一步输入或者可以进一步处理。同样,也需要输入整数形式或小数形式的数字,并用逗号分隔。在这种情况下,将它们理解为数字很重要。本文通过使用四个不同的示例,演示了给定逗号分隔的字符串或句子或数字,并通过 Python 程序理解其逗号分隔结构来处理它的过程。
第 1 步 - 首先输入一个以逗号分隔的字符串。
步骤 2 - 使用 split 函数将逗号分隔的部分分隔成列表。
第 3 步 - 删除列表项左侧的空格。
立即学习“Python免费学习笔记(深入)”;
第 4 步 - 删除列表项右侧的空格。
第 5 步 - 运行程序,然后检查结果。
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")
要查看结果,请在 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
第 1 步 - 首先给出一个以逗号分隔的输入字符串。
第 2 步 - 逐个字符地遍历字符串并识别逗号分隔的部分并将它们附加到列表中。
第 3 步 - 删除列表项左侧的空格。
立即学习“Python免费学习笔记(深入)”;
第 4 步 - 打印包含没有多余空格的项目的列表。
第 5 步 - 运行程序,然后检查结果。
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']
步骤 1 - 首先输入一个以逗号分隔且仅包含整数的字符串。
第 2 步 - 使用 split 函数将逗号分隔的整数分隔成字符串列表。
第 3 步 - 从此字符串列表中获取每个项目,并将它们转换为整数类型,并将它们作为整数附加到另一个列表。
第 4 步 - 运行程序,然后检查结果。
# 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)
要查看结果,请在 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]
第 1 步 - 首先输入一个以逗号分隔的字符串,并且仅包含整数和小数。
步骤 2 - 使用 split 函数来识别逗号分隔的数字并将它们作为字符串附加到列表中。
第 3 步 - 从此字符串列表中取出每个数字,并将它们转换为浮点类型,并将它们作为小数附加到另一个列表。
第 4 步 - 运行程序,然后检查结果。
# 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)
打开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 中,十进制数作为输入字符串给出,然后分隔到列表中。
以上就是Python程序:输入逗号分隔的字符串的详细内容,更多请关注php中文网其它相关文章!
python怎么学习?python怎么入门?python在哪学?python怎么学才快?不用担心,这里为大家提供了python速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号