Python built-in functions (24) -- frozenset, pythonfrozenset

Source: Internet
Author: User

Python built-in functions (24) -- frozenset, pythonfrozenset

English document:

Class frozenset([ Iterable])
Return a new frozensetObject, optionally with elements taken from Iterable. frozensetIs a built-in class. See frozensetAnd Set Types-set, frozenset for documentation about this class.
For other containers see the built-in set, list, tuple, And dictClasses, as well as collectionsModule.
Note:
  
1. Input an iteratable object to generate a new immutable set.
>>> a = frozenset(range(10))>>> afrozenset({0, 1, 2, 3, 4, 5, 6, 7, 8, 9})>>> b = frozenset('I am a Pythoner')>>> bfrozenset({'y', 'I', ' ', 'r', 't', 'm', 'h', 'o', 'a', 'e', 'n', 'P'})

2. When no parameter is input, an empty immutable set is generated.

>>> c = frozenset()>>> cfrozenset()

 

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.