Python 从字典键中删除空格

Python 从字典键中删除空格

Python是用于数据分析、网站开发、人工智能和自动化执行许多不同类型任务的广泛使用的平台。我们需要了解Python的不同特性。在本文中,我们将了解字典特性以及如何使用Python删除字典键之间的空格。这个特性主要用于根据需要存储和检索数据,但有时字典的键值之间可能会有空格。这导致用户想要访问数据时产生错误,甚至在编辑数据时也可能出现错误。

删除空格的不同方法

为了确保不会遇到这种问题,使用户体验更加顺畅,我们可以从字典键中删除空格。因此,在本文中,我们将学习使用Python删除字典键中空格的不同方法。

建立新字典

一个最简单的方法是通过创建一个全新的字典来删除空格。做法是从现有字典中选择每个键值对,然后使用相同的值创建一个新的字典,只是在值之间删除空格。让我们举个例子来更好地理解:

def remove_spaces(dictionary):
    modified_dictionary = {}
    for key, value in dictionary.items():
        new_key = key.replace(" ", "")  #removing space between keys
        modified_dictionary[new_key] = value
    return modified_dictionary

在上面的代码中

  • 字典的输入被传递给一个名为remove_spaces的函数

  • 所有新的值都存在于modified_dictionary中

  • 要使用带有键之间空格的旧值,我们可以使用items()

  • 用于从修改的字典中删除所有空格的方法是replace()

要检查键之间的空格是否被去除,可以使用以下字典:

test_dictionary = {"full name": "Aayush Yadav", "age": 12} 
#This data is used just for example

我们将使用 remove_spaces 和 test_dictionary 分别作为函数和参数

示例

def remove_spaces(dictionary):
    modified_dictionary = {}
    for key, value in dictionary.items():
        new_key = key.replace(" ", "")  #removing space between keys
        modified_dictionary[new_key] = value
    return modified_dictionary
test_dictionary = {"full name": "Aayush Yadav", "age": 12} 
#This data is used just for example
modified_dictionary = remove_spaces(test_dictionary)
#After the function and argument has been called
print(modified_dictionary)

输出

执行以上所有步骤后的输出如下:

{'fullname': 'Aayush Yadav', 'age': 12}

全名之间的空格被删除,因此我们成功地删除了空格。

编辑现有词典

在这种从键中删除空格的方法中,我们不像第一种方法那样在删除空格后创建新的词典,而是从现有的词典中删除键之间的空格。我们将通过以下示例更好地理解:

def remove_spaces(dictionary):
    keys_to_remove = []
    for key in dictionary.keys():
        if " " in key:
            new_key = key.replace(" ", "") #removing space between keys
            dictionary[new_key] = dictionary.pop(key)
    return dictionary

上述代码可以用于删除键之间的所有空格,我们可以通过以下字典示例来检查:

our_dictionary = {"full name": "Aayush Singh" , "Father name": "Yadav"}

现在我们将our_dictionary作为参数,remove_spaces作为函数来进行更改。

示例

def remove_spaces(dictionary):
    keys_to_remove = []
    for key in dictionary.keys():
        if " " in key:
           new_key = key.replace(" ", "") #removing space between keys
           dictionary[new_key] = dictionary.pop(key)
    return dictionary
our_dictionary = {"full name": "Aayush Singh" , "Father name": "Yadav"}
remove_spaces(our_dictionary)
print(our_dictionary)

输出

调用参数并运行函数后的输出为:

{'fullname': 'Aayush Singh', 'fathername': 'Yadav'}

成功地移除了全名和父名之间的空格。

使用字典推导式

这种方法与上面其他两种方法不同。在这种方法中,我们使用字典推导式创建一个新的字典。键的值保持不变,唯一的变化是在从字典推导式转移数据到新字典时去除了键之间的空格。我们可以使用下面的代码更好地理解它:

def no_spaces (dictionary): #From dictionary Comprehension
    return {key.replace(" ", ""): value for key, value in dictionary.items()}

为了去掉关键值之间的空格,我们可以使用replace()函数,并且我们可以通过以下字典来检查这个问题:

my_dictionary = {"full name": "Aayush Singh", "father name": "Yadav"}

然后我们将my_dictionary作为参数,no_spaces作为函数运行。

示例

def no_spaces (dictionary): #From dictionary Comprehension
    return {key.replace(" ", ""): value for key, value in dictionary.items()}
my_dictionary = {"full name": "Aayush Singh", "father name": "Yadav"}
modified_dictionary = no_spaces (my_dictionary)
print(modified_dictionary)

输出

在这种情况下,输出结果如下:

{'fullname': 'Aayush Singh', 'fathername': 'Yadav'}

全名和父亲姓名之间的空格已被删除,我们成功地去掉了这些空格。

使用递归函数

这种方法最适用于一个字典存在另一个字典(嵌套字典)的情况。在这种情况下,我们可以使用递归函数来去除键之间的空格。通过以下示例,我们将更好地理解它:

def remove_spaces (dictionary): 
    new_dictionary = {}
    for key, value in dictionary.items(): #For normal dictionary
        if isinstance(value, dict):  #for nested dictionary 
            value = remove_spaces (value)
        new_key = key.replace(" ", "") #removing space between keys
        new_dictionary[new_key] = value
    return new_dictionary

将使用以下示例来测试代码:

test_dictionary = {"full name": "Aayush Singh", "father name": "Yadav", "details": {"age": 12, "blood group": "O-"}}

现在我们将调用参数test_dictionary并运行remove_spaces函数:

示例

def remove_spaces (dictionary): 
    new_dictionary = {}
    for key, value in dictionary.items(): #For normal dictionary
        if isinstance(value, dict):  #for nested dictionary 
            value = remove_spaces (value)
        new_key = key.replace(" ", "") #removing space between keys
        new_dictionary[new_key] = value
    return new_dictionary
test_dictionary = {"full name": "Aayush Singh", "father name": "Yadav", "details": {"age": 12, "blood group": "O-"}}
modified_dictionary = remove_spaces (test_dictionary)
print(modified_dictionary)

输出

以上示例的输出将是:

{'fullname': 'Aayush Singh', 'fathername': 'Yadav', 'details': {'age': 12, 'bloodgroup': 'O-'}}

在递归函数中,删除了全名和父亲名字之间的空格,因此我们成功地使用递归函数删除了空格。

结论

Python被很多不同的人用于很多不同的目的,因此有可能有人想要使用Python删除字典键之间的空格。因此,本文介绍了可能使用的不同方法来删除键之间的空格。本文包括所有需要进行的代码编写,以删除键之间的空格,并提供一个示例以便更容易理解该方法。

为了防止在运行代码时出现任何错误,请确保更改没有在代码的其他部分中复制。

Camera课程

Python教程

Java教程

Web教程

数据库教程

图形图像教程

办公软件教程

Linux教程

计算机教程

大数据教程

开发工具教程