BaşlayınÜcretsiz Başlayın

Public vs. private attributes

Excellent! Your coworker has decided to use object-oriented programming for the banking app they are working on. Now they need your help with implementing one of their classes, which is going to require both public and private attributes.

Bu egzersiz

Programming Paradigm Concepts

kursunun bir parçasıdır
Kursu Görüntüle

Uygulamalı interaktif egzersiz

Bu örnek kodu tamamlayarak bu egzersizi bitirin.

# Define the Car class
class Car():
    def __init__(self, price):
        # price is a public attribute
        self.____ = price
Kodu Düzenle ve Çalıştır