Frozenset in Python|Python Frozenset|Set in Python Tutorial For Beginners

preview_player
Показать описание
Frozenset in Python|Python Frozenset|Set in Python Tutorial For Beginners
This video is part of python tutorial for beginners in hindi.In this video, i have explained frozenset in python.It is an immutable version of python set.Let's explore it..

Topics covered:-
1) frozenset in python
2) how to create frozenset

Hello guys,welcome to codeyug to build your computer science skills.Here,you will learn programming tutorials and computer science tutorials from basics to advanced.

source code :-
Thanks for watching this video
Subscribe codeyug for more programming tutorials.
About this channel:-
This channel provides free tutorials on programming,coding,web development.There are programming tutorials which covers from basics to advanced absolutely in hindi.

Our social links:-
creator:-
------shantanu kejkar-------
#python #python3 #codeyug #tutorial #programming #coding
Рекомендации по теме
Комментарии
Автор

Sir, बहोत सही explain kiya aap ne ? 😊👍👌

nilayb
Автор

i cant thank you enough for ur content going

subhamtyagi
Автор

#frozenset
""" Frozenset is an immutable version of set.

syntax:
frozenset(iterable)
"""
var1 = frozenset(["hey", "add", "temp"])
print(var1)
print(type(var1))

#cannot use add, remove, update method because it is immutable

v = {"Hii", "How", "are", "you", "karan", "?"}
v1= frozenset(v)
print(v1)
print(type(v1))

KaranSinghD-yjep