[Tutor] Debugging in Python

2015-11-16 Thread Sajjadul Islam
Hello forum, I am trying Python 3.4 on Ubuntu and I am a bit confused with the debugging scope of python in general. I wrote a small function and then I tried to run with the following call: /// import hilbert hilbert.hilbert(3) /// Please note

Re: [Tutor] The very first program in python

2015-11-15 Thread Sajjadul Islam
I got the error message as mentioned in my previous post. How to call the run menu once you are in the command line at linux env ? Thanks On Thu, Nov 12, 2015 at 6:16 PM, Sajjadul Islam wrote: > Hello > > I have coded the first snippet in python - defined a function , then I am &

[Tutor] The very first program in python

2015-11-12 Thread Sajjadul Islam
Hello I have coded the first snippet in python - defined a function , then I am getting error if I try call the function from the IDLE window. The error is : /// Traceback (most recent call last): File "", line 1, in NameError: name 'print_lol' is not defined

[Tutor] print string

2014-08-17 Thread Sajjadul Islam
Hello forum, I have started working with python 2.7.6 and i am trying to print the following string value: print("Same", "message", "as before") and i am supposed to get Same message as before. But i am getting the following : ("Same", "message", "as before") Any hint whats wrong? Thanks