more changes and additions

This commit is contained in:
gijsio
2020-08-03 10:19:42 +02:00
parent 18f36adec3
commit cf010b86b1
8 changed files with 44 additions and 3 deletions

View File

@@ -24,4 +24,7 @@ print("hello world: {} {}".format(machine.rng(), " random number"))
#you can also ask for user input
result = input("what's up?\n")
print(result)
# and lastly, you can also print like this,which is very useful when printing large amounts of data
i = 10
print(1,2,3,'e',i)
```