(New page: == Test 1 Prep == Here are my notes.) |
|||
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
− | |||
== Test 1 Prep == | == Test 1 Prep == | ||
Here are my notes. | Here are my notes. | ||
+ | |||
+ | <math>\sum_{i=1}^{N}{i} = \frac{i(i-1)}{2} = \frac{i^2-i}{2}</math> | ||
+ | |||
+ | <source lang="python"> | ||
+ | |||
+ | import os, sys | ||
+ | def main(): | ||
+ | print "hello world" | ||
+ | |||
+ | if __name__ == "__main__": | ||
+ | main() | ||
+ | |||
+ | </source> |
Latest revision as of 16:30, 27 August 2009
Test 1 Prep
Here are my notes.
$ \sum_{i=1}^{N}{i} = \frac{i(i-1)}{2} = \frac{i^2-i}{2} $
import os, sys def main(): print "hello world" if __name__ == "__main__": main()