Python Forum
newbie question - can't make code work
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
newbie question - can't make code work
#1
Hi,

New to python and doing a course by Mosh. I have a tutorial with the following code that will NOT work no matter what I do.

class Animal:

class Mammal(Animal):

m = Mammal ()
print (isinstance(m, Mammal))
print (isinstance(m, Animal))
The output should be a boolean. Can someone point out what Im missing please?

PS the error is :

Error:
File "/Users/mark/PycharmProjects/complete python mastery/main.py", line 1191 class Mammal(Animal): ^ IndentationError: expected an indented block after class definition on line 1189 Process finished with exit code 1
deanhystad write Oct-19-2023, 01:19 PM:
Please post all code, output and errors (it it's entirety) between their respective tags. Refer to BBCode help topic on how to post. Use the "Preview Post" button to make sure the code is presented as you expect before hitting the "Post Reply/Thread" button.
Reply
#2
The message is pretty clear. Python expects you to indent like this:
class Animal:
 
    class Mammal(Animal):
 
m = Mammal ()
print (isinstance(m, Mammal))
print (isinstance(m, Animal))
But now you get this eror:
Error:
m = Mammal () IndentationError: expected an indented block after class definition on line 3
So the problem is not indenting so much as python expects the code following the class declaration to be indented.

You could follow the class declaration by an actual class definition.
class Animal:
    def some_method(self, value):
        self.a = value
 
class Mammal(Animal):
    def some_other_method(self, value):
        self.b = value
 
m = Mammal ()
print (isinstance(m, Mammal))
print (isinstance(m, Animal))
Or you could use a placeholder.
class Animal:
    pass
 
class Mammal(Animal):
    pass
 
m = Mammal ()
print (isinstance(m, Mammal))
print (isinstance(m, Animal))
Or a docstring.
class Animal:
    """Kingdom of living things that are not plants."""
 
class Mammal(Animal):
    """An animal that produces milk."""
 
m = Mammal ()
print (isinstance(m, Mammal))
print (isinstance(m, Animal))
Reply
#3
Hi deanhystad.

Thanks so much for your detailed explanation. It turns on that tutor had used the following syntax:

class Mammal(Animal): ...

But the three dots after the colon were really tight together and the IDE he used displayed them in a very light grey colour.

I wasn't aware of this notation until now which as i understand it is used as an alternative to

class Mammal(Animal):
pass

Thanks again for taking the time to provide a great explanation.

T
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  How can I make this code more efficient and process faster? steven_ximen 0 352 Dec-17-2024, 04:27 PM
Last Post: steven_ximen
  Trying to Make Steganography Program Work For All Payload Types Stegosaurus 0 1,016 Sep-26-2024, 12:43 PM
Last Post: Stegosaurus
  how can you make a question have more than one awnser pentopdmj 2 805 Sep-22-2024, 05:04 PM
Last Post: Pedroski55
  Can't get graph code to work properly. KDDDC2DS 1 606 Sep-16-2024, 09:17 PM
Last Post: deanhystad
  How to make my Telegram bot stop working at 16:15 and not work on Fridays? hus73 2 1,243 Aug-10-2024, 12:06 PM
Last Post: hus73
  I can't for the life of me get this basic If statement code to work CandleType1a 8 2,076 May-21-2024, 03:58 PM
Last Post: CandleType1a
  How is pandas modifying all rows in an assignment - python-newbie question markm74 1 1,392 Nov-28-2023, 10:36 PM
Last Post: deanhystad
  hi need help to make this code work correctly atulkul1985 5 1,845 Nov-20-2023, 04:38 PM
Last Post: deanhystad
  Newbie question about switching between files - Python/Pycharm Busby222 3 1,355 Oct-15-2023, 03:16 PM
Last Post: deanhystad
  Cleaning my code to make it more efficient BSDevo 13 3,468 Sep-27-2023, 10:39 PM
Last Post: BSDevo

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020