Skip to content

Latest commit

 

History

History
22 lines (19 loc) · 466 Bytes

File metadata and controls

22 lines (19 loc) · 466 Bytes

My Report

This report demonstrates inscribe. First, let's define a variable in Python.

message = "Hello from a persistent Python script!"

Now, let's print that variable in a separate code block.

print(message + "\n\n")

And here is a calculation:

x = 100
y = 50
print(f"The result is: {x + y}")

And here is a calculation x + y = print(x + y):