[Tutor] (no subject)

2014-03-21 Thread Gary Engstrom
Dear Pythonists   Here is the code   def fiba(n):     a = 0     b = 1     while  a n :     print(a)     c =  a + b     a = a +c     # 0,1,3,7,15,31,63   def fibc(n):     a = 0    

[Tutor] new to python

2010-11-18 Thread gary engstrom
Dear Python Tutor, Being new to python I was wondering if there is a way to import exel data into pyrhon matrix/arrays so that I have some data to work with. I know R uses Rcmdr as an easy interface for excel data, which helps keep the reader engaged while learning the language. Thanks G