From 011d6d4547b6cafa8260cfa6c447b8faf25d07f8 Mon Sep 17 00:00:00 2001 From: Hoai-Thu Vuong Date: Tue, 21 Dec 2021 23:54:06 +0700 Subject: [PATCH] example code with tab --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index d899d1b..8ef61eb 100644 --- a/README.md +++ b/README.md @@ -27,12 +27,12 @@ All of the code is organized into folders. For example, Chapter02. The code will look like the following: ``` class Musician: -def __init__(self, name): -self.name = name -def __str__(self): - return f'the musician {self.name}' -def play(self): - return 'plays music' + def __init__(self, name): + self.name = name + def __str__(self): + return f'the musician {self.name}' + def play(self): + return 'plays music' ``` **Following is what you need for this book:**