diff --git a/pyscriptjs/examples/simple_script.html b/pyscriptjs/examples/simple_script.html index 70fe945..aaa3fbf 100644 --- a/pyscriptjs/examples/simple_script.html +++ b/pyscriptjs/examples/simple_script.html @@ -4,7 +4,7 @@ - Svelte app + Simple script @@ -13,10 +13,12 @@ + Hello world!
+ This is the current date and time, as computed by Python: - from datetime import datetime - now = datetime.now() - now.strftime("%m/%d/%Y, %H:%M:%S") +from datetime import datetime +now = datetime.now() +now.strftime("%m/%d/%Y, %H:%M:%S")