Quick actions

cmd+k|ctrl+k

Navigation

Languages

functions

Snippet info

Language

Python

Visibility

public

Author

gustav

Created

2026-07-31T18:40:51.028218Z

Updated

2026-08-02T10:26:58.687369Z

#Functions are really useful when you have things that you want to do over and over

def say_hello():
    print('hellooo')

say_hello()
INFO