Jed Rembold
Friday, August 7, 2020
We will use a theorem
\[\sum_i^{10} 5i^2 + 4\]
Here we have some code:
>>> A = 10
>>> A
10
>>> int(23.45)
23
>>> type(A)
int
>>> # this is a comment! 123
>>> for i in range(5):
print(i)
0
1
2
3
4
>>> for i in range(5):
print(i)
0
1
2
3
4
>>> print("yay this works!")
yay this works!
>>> print(10+3)
>>> print(10+3)
13
What about if I want code inline like this: print(10)? How can that work?