DEV Community

Cover image for FUNCTIONS(PYTHON3)
francnstein
francnstein

Posted on

2 1

FUNCTIONS(PYTHON3)

You must define functions before they are called, in the same way that you must assign variables before using them.

def names():
print('Franc')
print('Francnstein')
names()

Top comments (5)

Some comments may only be visible to logged-in visitors. Sign in to view all comments.

A Workflow Copilot. Tailored to You.

Pieces.app image

Our desktop app, with its intelligent copilot, streamlines coding by generating snippets, extracting code from screenshots, and accelerating problem-solving.

Read the docs

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay