A Python String is Immutable

A Python String is Immutable

John Philip Jones

9 лет назад

9,028 Просмотров

Ссылки и html тэги не поддерживаются


Комментарии:

@amolpathakndb
@amolpathakndb - 24.11.2022 17:27

deserves 10000 likes

Ответить
@kumarprateek1061
@kumarprateek1061 - 05.06.2021 07:33

Thank you so much.. Lots of love from India

Ответить
@damodarsahu3868
@damodarsahu3868 - 17.12.2018 20:08

a='ab-c'
b='ab-c'
a is b # False
a[0] is b[0], a[1] is b[1], a[2] is b[2], a[3] is b[3] #(True, True, True, True)

May i know the reason?

Ответить
@andresmanuel3575
@andresmanuel3575 - 13.04.2018 07:13

A good example!

Ответить
@yastikakumar7257
@yastikakumar7257 - 16.03.2018 19:22

Thank's

Ответить