Search notes:

Python: nested functions

In Python, it's possible to nest functions. Apparently, these are also(?) called inner functions.
#!/usr/bin/python3

def func():

    print("func was called")

    def nested_func():
        print("nested_func was called")

        def doubly_nested_func():
            print("doubly_nested_func was called")

        doubly_nested_func()

    nested_func()

func()
#
# func was called
# nested_func was called
# doubly_nested_func was called
Github repository about-python, path: /statements/def/nested.py

See also

The def statement.

Index

Fatal error: Uncaught PDOException: SQLSTATE[HY000]: General error: 8 attempt to write a readonly database in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php:78 Stack trace: #0 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(78): PDOStatement->execute(Array) #1 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(30): insert_webrequest_('/notes/developm...', 1758207103, '216.73.216.150', 'Mozilla/5.0 App...', NULL) #2 /home/httpd/vhosts/renenyffenegger.ch/httpsdocs/notes/development/languages/Python/statements/def/nested(61): insert_webrequest() #3 {main} thrown in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php on line 78