Notice: file_put_contents(): Write of 17353 bytes failed with errno=28 No space left on device in /var/www/tgoop/post.php on line 50
Proglib.academy | IT-курсы@proglib_academy P.2390
PROGLIB_ACADEMY Telegram 2390
✏️ Вопрос с реального собеседования по Python

Что такое self в Python

Self ссылается на конкретный экземпляр класса. Это нужно, чтобы методы могли обновлять и использовать данные именно этого объекта.

📌 Пример:
class Shirt:
def __init__(self, color):
self.color = color # Свойство привязывается к экземпляру

s = Shirt('yellow') # Создаём рубашку жёлтого цвета
print(s.color) # => 'yellow'


Что произошло

С
помощью self мы задаём и используем свойства экземпляра, такие как color. В данном случае, self.color — это свойство, доступное конкретной рубашке.

#собес_academy
Please open Telegram to view this post
VIEW IN TELEGRAM
👍3😁1💯1



tgoop.com/proglib_academy/2390
Create:
Last Update:

✏️ Вопрос с реального собеседования по Python

Что такое self в Python

Self ссылается на конкретный экземпляр класса. Это нужно, чтобы методы могли обновлять и использовать данные именно этого объекта.

📌 Пример:

class Shirt:
def __init__(self, color):
self.color = color # Свойство привязывается к экземпляру

s = Shirt('yellow') # Создаём рубашку жёлтого цвета
print(s.color) # => 'yellow'


Что произошло

С
помощью self мы задаём и используем свойства экземпляра, такие как color. В данном случае, self.color — это свойство, доступное конкретной рубашке.

#собес_academy

BY Proglib.academy | IT-курсы




Share with your friend now:
tgoop.com/proglib_academy/2390

View MORE
Open in Telegram


Telegram News

Date: |

Content is editable within two days of publishing Don’t publish new content at nighttime. Since not all users disable notifications for the night, you risk inadvertently disturbing them. bank east asia october 20 kowloon The court said the defendant had also incited people to commit public nuisance, with messages calling on them to take part in rallies and demonstrations including at Hong Kong International Airport, to block roads and to paralyse the public transportation system. Various forms of protest promoted on the messaging platform included general strikes, lunchtime protests and silent sit-ins. Find your optimal posting schedule and stick to it. The peak posting times include 8 am, 6 pm, and 8 pm on social media. Try to publish serious stuff in the morning and leave less demanding content later in the day.
from us


Telegram Proglib.academy | IT-курсы
FROM American