Python Programming 65 - Intro to Object Oriented Programming - Classes, __init__, Objects

preview_player
Показать описание


~~~~~~~~~~~~~~~ CONNECT ~~~~~~~~~~~~~~~

~~~~~~~~~~~~~~ SUPPORT ME ~~~~~~~~~~~~~~

🅑 Bitcoin - 3HnF1SWTzo1dCU7RwFLhgk7SYiVfV37Pbq
🅔 Eth - 0x350139af84b60d075a3a0379716040b63f6D3853
Рекомендации по теме
Комментарии
Автор

Why are the only captions Indonesian (auto-generated)? At around 2:40 it starts saying “book book book book book book book book” 🤣

videogameepicfails
Автор

Just now getting to oop? How long is this series going to be? I’m only asking because I want to start when it’s done.

Worldexplorer
Автор

I was doing something like this in C#, my language of choice!!

class Book
{
public string Title;
public string Author;
public int PageCount;
}

class Program
{
static void Main()
{
Book Book01 = new Book
{
Title = "Starlight",
Author = "Mephenie Steyer",
PageCount = 562
};

Console.WriteLine($"I am currently reading a book called, \"{Book01.Title}\", by {Book01.Author}.");

//Pause
Console.ReadKey();
}
}

-_IT_-