Merge pull request #3390 from InspectorCaracal/patch-21

Fix tutorial code block
This commit is contained in:
Griatch 2024-01-08 20:46:15 +01:00 committed by GitHub
commit e37419972e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -98,11 +98,11 @@ multi-line interpreter.
You now only need to import once to use the imported function over and over. You now only need to import once to use the imported function over and over.
> from world.test import hello_world > from world.test import hello_world
> hello_world() > hello_world(me)
Hello World! Hello World!
> hello_world() > hello_world(me)
Hello World! Hello World!
> hello_world() > hello_world(me)
Hello World! Hello World!
> quit() > quit()
Closing the Python console. Closing the Python console.