Python

Now for some Python code. Step one is basic initialization. The four zone totals are set to zero while the list is initialized as empty. Note the multiple assignment shortcut in the second line: R=[] Ntoolow = Nlow = Nhigh = Ntoohigh = 0.0. Steps two and three should be familiar input() statements with int() or float() as appropriate. ................
................