i've read Clean Code in Python book by Mariano Anaya and in this book he said when we use leading double underscore the attribute goes private and you can't call the attribute or change value of attribute enter image description here but in my code i can change private attribute without get error but why? my version of my python is 3.10enter image description here
i 've tried both leading single underscore and leading double underscore and not any error raising