Contact
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
| Download

William Stein -- Talk for Mathematics is a long conversation: a celebration of Barry Mazur

Views: 2342
1
#!/usr/bin/env python
2
import sys
3
a = open('rh.tex').read().replace(sys.argv[1],sys.argv[2])
4
open('rh.tex','w').write(a)
5
6