2024年11月12日 Python 用于输入一个以逗号分隔的字符串 极客笔记
当输入或给出文本字符串时,可能会在其中包含逗号。有时的任务是将句子或文本字符串的所有逗号分隔部分分开。这些部分可能是单个词或多个词。这些字符串部分可以进一步输入为列表项,或者可以进一步进行处理。同样,以整数形式或小数形式输入的数字也需要用逗号分隔。在这种情况下,理解这些数字的方式很重要。本文通过使用四个不同的示例,展示了如何通过使用Python程序,以给定的逗号分隔字符串或句子,或数字,并通过理解其逗号分隔结构来对其进行处理。
步骤1 - 首先输入一个由逗号分隔的字符串。
步骤2 - 使用split函数将逗号分隔的部分分离成一个列表。
步骤3 - 删除列表项左边的空格。
步骤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 − 移除列表项左边的空格。
步骤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]
在本Python文章中,通过四个不同的示例,介绍了如何输入逗号分隔字符串的方法。首先,在示例1中,使用split函数通过逗号分隔字符串的部分。在示例2中,通过检查所有字符来确定逗号分隔的部分。在示例3中,将整数作为字符串输入,而在示例4中,将小数作为输入字符串,然后将其分隔为列表。
本文链接:http://so.lmcjl.com/news/17653/