python 示例_Python使用示例设置add()方法

python 示例

设置add()方法 (Set add() Method)

add() method is used to add an element to the set, the method accepts an element and adds the elements to this set.

add()方法用于将元素添加到集合中,该方法接受元素并将元素添加到该集合中。

Note: If the specified element already exists in the set, the method will not add the element to the set.

注意 :如果指定的元素已经存在于集合中,则该方法不会将元素添加到集合中。

Syntax:

句法:

    set_name.add(element)

Parameter(s):

参数:

  • element – It represents the element to add in the set.

    element –它表示要添加到集合中的元素。

Return value:

返回值:

It does not return any value.

它不返回任何值。

Example 1:

范例1:

# declaring a set
cities = {"New Delhi", "Mumbai"}

# printing set before adding the element
print("cities = ", cities)

# adding new city i.e. new element
cities.add("Banglore")
cities.add("Gwalior")

# printing set after adding the elements
print("cities = ", cities)

Output

输出量

cities =  {'New Delhi', 'Mumbai'}
cities =  {'New Delhi', 'Mumbai', 'Banglore', 'Gwalior'}

Demonstrating example (adding an element that exists in the set)

演示示例(添加集合中存在的元素)

Example 2:

范例2:

# declaring a set
cities = {"New Delhi", "Mumbai"}

# printing set before adding the element
print("cities = ", cities)

# adding new city i.e. new element
cities.add("Banglore")
cities.add("Gwalior")

# printing set after adding the elements
print("cities = ", cities)

# adding "Gwalior" element again
cities.add("Gwalior")

# printing set after adding the elements
print("cities = ", cities)

Output

输出量

cities =  {'Mumbai', 'New Delhi'}
cities =  {'Gwalior', 'Mumbai', 'New Delhi', 'Banglore'}
cities =  {'Gwalior', 'Mumbai', 'New Delhi', 'Banglore'}

See the output, we have added element "Gwalior" and tried to add it again, but the second time element "Gwalior" is not added.

看到输出,我们添加了元素“ Gwalior”,并尝试再次添加它,但是没有添加第二次元素“ Gwalior”

翻译自: https://www.includehelp.com/python/set-add-method-with-example.aspx

python 示例

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值