DEV Community

Discussion on: Python Functions.

Collapse
 
anonymoux47 profile image
AnonymouX47 • Edited

Not bad for a beginner but you should note a few things:

  • type, int, float, str are classes, NOT functions... they're fundamentally different types in python.
  • Every function has a return value... None is a return value.
Collapse
 
manuel_a profile image
Acar Emmanuel

Thanks so much for your feedback. It helps me to be better.