Re: [Tutor] Error terminal

2019-08-07 Thread Mats Wichmann
On 8/7/19 5:27 PM, Richard Rizk wrote: > Thank you Cameron for your message. > > Please find below the error message i am receiving. > > I think the command line i'm running is trying to connect with the > python3.7 that i have on my computer which is a requirement for the command > line to work

Re: [Tutor] Error terminal

2019-08-07 Thread Cameron Simpson
On 07Aug2019 13:08, Richard Rizk wrote: I wanted to send you this email to ask if you would have someone that can solve the problem I'm having with python. I'm having issues with terminal on mac, is there someone that can help with this? I probably can. Is this a Python problem, a Terminal

[Tutor] Error terminal

2019-08-07 Thread Richard Rizk
Hello I wanted to send you this email to ask if you would have someone that can solve the problem I'm having with python. I'm having issues with terminal on mac, is there someone that can help with this? Best regards, Richard ___ Tutor maillist -

Re: [Tutor] Error when trying to insert csv values into a sql table

2019-06-11 Thread Peter Otten
Cravan wrote: > Here is the stack overflow link: > https://stackoverflow.com/questions/56540292/error-when-trying-to-insert-csv-values-into-a-sql-table > > > > I'm getting a weird error code when I try to store values from a csv into > an sql table in a movie review assignment. Like they say

[Tutor] Error when trying to insert csv values into a sql table

2019-06-11 Thread Cravan
Here is the stack overflow link: https://stackoverflow.com/questions/56540292/error-when-trying-to-insert-csv-values-into-a-sql-table I'm getting a weird error code when I try to store values from a csv into an sql table in a movie review assignment. I have already edited my apostrophes and

Re: [Tutor] error message

2019-03-21 Thread Alan Gauld via Tutor
On 21/03/19 05:13, Glenn Dickerson wrote: Thank you for all of your responses to: class Student(): def__init__(self, name, major, gpa, is_on_probation): self.name = name self.major = major self.gpa = gpa self.is_on_probation = is_on_probation Presumabl

Re: [Tutor] error message

2019-03-21 Thread Steven D'Aprano
> I don't understand this error message. Thank you so much, Glenn Dickerson > > Traceback (most recent call last): > File "/home/glen/app.py", line 1, in > import Student > File "/home/glen/Student.py", line 2 > def__init__(self, name, major, gpa, is_on_probation): >

[Tutor] error message

2019-03-21 Thread Glenn Dickerson
Thank you for all of your responses to: class Student(): def__init__(self, name, major, gpa, is_on_probation): self.name = name self.major = major self.gpa = gpa self.is_on_probation = is_on_probation import Student student1 = Student('Jim', 'Business', 3.1, F

Re: [Tutor] Error Python version 3.6 does not support this syntax.

2018-11-29 Thread Steven D'Aprano
On Fri, Nov 30, 2018 at 02:19:25AM +0530, srinivasan wrote: > Dear Mats, > > Thanks a lot for your quick responses, again the below line seems to > be throwing the same error, is that should I again decode the line > where am facing the issue to str? or could you please let me if there > is any al

Re: [Tutor] Error Python version 3.6 does not support this syntax.

2018-11-29 Thread srinivasan
Dear Mats, Thanks a lot for your quick responses, again the below line seems to be throwing the same error, is that should I again decode the line where am facing the issue to str? or could you please let me if there is any alternative solution for the same or workaround in python 3.6? Code Snipp

Re: [Tutor] Error Python version 3.6 does not support this syntax.

2018-11-29 Thread srinivasan
Dear Python Experts, With the below code snippet, I am seeing the below error, I am using python 3.6, could you please what could be the issue? Code Snippet: --- import time import pexpect import subprocess import sys class BluetoothctlError(Exception): """This exception is r

Re: [Tutor] Error Python version 3.6 does not support this syntax.

2018-11-29 Thread Cameron Simpson
On 30Nov2018 02:19, srinivasan wrote: Thanks a lot for your quick responses, again the below line seems to be throwing the same error, is that should I again decode the line where am facing the issue to str? or could you please let me if there is any alternative solution for the same or workarou

Re: [Tutor] Error Python version 3.6 does not support this syntax.

2018-11-29 Thread Mats Wichmann
On 11/29/18 12:20 PM, srinivasan wrote: > Dear Python Experts, > > With the below code snippet, I am seeing the below error, I am using > python 3.6, could you please what could be the issue? > self.child = pexpect.spawn("bluetoothctl", echo = False) ... > self.child.send(command

Re: [Tutor] Error Python version 3.6 does not support this syntax.

2018-11-27 Thread Mats Wichmann
On 11/27/18 5:50 AM, srinivasan wrote: > Dear Python Experts, > > As still I am newbie and learning python, I am trying to reuse the > Bluetoothctl wrapper in Python from the link ( > https://gist.github.com/egorf/66d88056a9d703928f93) I am using python3.6 > version, In pycharm editor on the bold

[Tutor] Error Python version 3.6 does not support this syntax.

2018-11-27 Thread srinivasan
Dear Python Experts, As still I am newbie and learning python, I am trying to reuse the Bluetoothctl wrapper in Python from the link ( https://gist.github.com/egorf/66d88056a9d703928f93) I am using python3.6 version, In pycharm editor on the bold highlighted code snippets I see the error message "

Re: [Tutor] Error in class definition of __init__

2018-02-15 Thread Alan Gauld via Tutor
On 15/02/18 01:27, Leo Silver wrote: > Hello. > > I'm trying to create a class to represent products which includes a list of > volume based pricing and sets the first of these as the unit price: > > def __init__(self, RatePlanID): > self.id = RatePlanID > self.name = RatePlan

Re: [Tutor] Error in class definition of __init__

2018-02-15 Thread Peter Otten
Leo Silver wrote: > Hello. > > I'm trying to create a class to represent products which includes a list > of volume based pricing and sets the first of these as the unit price: > > def __init__(self, RatePlanID): > self.id = RatePlanID > self.name = RatePlans.toggleids[self.i

[Tutor] Error in class definition of __init__

2018-02-15 Thread Leo Silver
Hello. I'm trying to create a class to represent products which includes a list of volume based pricing and sets the first of these as the unit price: def __init__(self, RatePlanID): self.id = RatePlanID self.name = RatePlans.toggleids[self.id] self.pricing = RatePlans

Re: [Tutor] Error with sqlalchemy

2017-08-01 Thread Alan Gauld via Tutor
On 01/08/17 12:13, rakesh sharma wrote: > I am getting the error > > TypeError: utf_8_decode() argument 1 must be string or buffer, not long That's not too helpful out of context, can you show us more of the error trace? Can you show us the method that generates it? Do you have any indication ab

Re: [Tutor] Error with sqlalchemy

2017-08-01 Thread Mats Wichmann
On 08/01/2017 05:13 AM, rakesh sharma wrote: > Hi All > > > I am getting an error in python. Its a flask app that I am doing > > I am getting the error > > TypeError: utf_8_decode() argument 1 must be string or buffer, not long > > at this point in the code > > ship_schedules = ShipSchedule.q

[Tutor] Error with sqlalchemy

2017-08-01 Thread rakesh sharma
Hi All I am getting an error in python. Its a flask app that I am doing I am getting the error TypeError: utf_8_decode() argument 1 must be string or buffer, not long at this point in the code ship_schedules = ShipSchedule.query.all() The schema definition is like that I gave below, there is

Re: [Tutor] Error when trying to use classes

2017-02-07 Thread George Fischhof
2017-02-07 16:34 GMT+01:00 Rafael Skovron : > I'm trying to learn how to use Classes but I keep getting NameErrors no > matter what code I put into the script. > > Any ideas why? > > My general workflow is I edit in vim, then invoke python3 interpreter, > import the module and try to use the Clas

Re: [Tutor] Error when trying to use classes

2017-02-07 Thread Alex Kleider
On 2017-02-07 07:34, Rafael Skovron wrote: I'm trying to learn how to use Classes but I keep getting NameErrors no matter what code I put into the script. Any ideas why? Assuming the code you've edited using vim is in a file mymodule.py And after invoking the interpreter you issue the follow

Re: [Tutor] Error when trying to use classes

2017-02-07 Thread Alan Gauld via Tutor
On 07/02/17 15:34, Rafael Skovron wrote: > My general workflow is I edit in vim, then invoke python3 interpreter, > import the module and try to use the Class and methods from the class. > > For example, importing customer.py and assigning this object yields: > rafael = Customer('rafael',10

[Tutor] Error when trying to use classes

2017-02-07 Thread Rafael Skovron
I'm trying to learn how to use Classes but I keep getting NameErrors no matter what code I put into the script. Any ideas why? My general workflow is I edit in vim, then invoke python3 interpreter, import the module and try to use the Class and methods from the class. For example, importing cus

Re: [Tutor] Error

2016-10-04 Thread Ramanathan Muthaiah
> > I began to learn Python and after saving a file gra.py tried to reopen it > and got an error (in the Annex). > > What's the error on re-opening the file ? Also, share what version of Python, OS and editor you are using. FYI, this is a text only list, images of attachments will be filtered. /

Re: [Tutor] Error

2016-10-04 Thread Alan Gauld via Tutor
On 04/10/16 18:41, Agnieszka Socha wrote: > I began to learn Python and after saving a file gra.py tried to reopen it > and got an error (in the Annex). This is a text only list so attachments tend to get stripped off. We need a lot more information I'm afraid. What are you using to "reopen" the

[Tutor] Error

2016-10-04 Thread Agnieszka Socha
I began to learn Python and after saving a file gra.py tried to reopen it and got an error (in the Annex). Agnieszka Socha ___ Tutor maillist - Tutor@python.org To unsubscribe or change subscription options: https://mail.python.org/mailman/listinfo/tut

Re: [Tutor] Error: 'IndexedVar' object is not callable

2016-09-11 Thread Pooja Bhalode
Hi Steven, Thank you so much for your help. It worked. That was the mistake I had. I had (i,j) instead of [i,j] Thanks again Pooja On Sat, Sep 10, 2016 at 12:23 PM, Pooja Bhalode wrote: > Hi everyone, > > I am sorry about the confusion earlier, > I am trying to run Pyomo environment in Pytho

Re: [Tutor] Error: 'IndexedVar' object is not callable

2016-09-10 Thread Alan Gauld via Tutor
On 10/09/16 17:23, Pooja Bhalode wrote: > I am trying to run Pyomo environment in Python on sublime text editor. OK, For the pyomo stuff you should ask on the pyomo support site (or I notice they do staxck overflow too) > Python version of 2.7.11. I am running the code in sublime itself. You ma

Re: [Tutor] Error: 'IndexedVar' object is not callable

2016-09-10 Thread Pooja Bhalode
Hi everyone, I am sorry about the confusion earlier, I am trying to run Pyomo environment in Python on sublime text editor. Python version of 2.7.11. I am running the code in sublime itself. The code is somewhat long, around 200 lines. I can add snippets of it though. Code: m.z = ContinuousSet(

Re: [Tutor] Error: 'IndexedVar' object is not callable

2016-09-09 Thread Alex Kleider
On 2016-09-09 18:13, Steven D'Aprano wrote: Please read this article first for how you can improve the chances of getting good answers to your questions: http://sscce.org/ In addition to the link Seven provides above, I've also found the following to be worth perusing: http://www.catb.org/es

Re: [Tutor] Error: 'IndexedVar' object is not callable

2016-09-09 Thread Steven D'Aprano
Hi Pooja, and welcome! On Fri, Sep 09, 2016 at 02:50:57PM -0400, Pooja Bhalode wrote: > Hi everyone, > > I was getting this error which read ' 'IndexedVar' object is not callable ' > for a variable type. > > The variable is defined as a class variable and has dimensions m.C(i,j) in > z and t ax

Re: [Tutor] Error: 'IndexedVar' object is not callable

2016-09-09 Thread Alex Kleider
On 2016-09-09 11:50, Pooja Bhalode wrote: Hi everyone, I was getting this error which read ' 'IndexedVar' object is not callable ' for a variable type. You haven't provided much information but it seems to me you are calling IndexedVar as though it were a function but it probably isn't a f

Re: [Tutor] Error: 'IndexedVar' object is not callable

2016-09-09 Thread Alan Gauld via Tutor
On 09/09/16 19:50, Pooja Bhalode wrote: > I was getting this error which read ' 'IndexedVar' object is not callable ' > for a variable type. Python error messages are very informative, but only if we can see them. Please post the entire error message not just a summary. > The variable is defined

[Tutor] Error: 'IndexedVar' object is not callable

2016-09-09 Thread Pooja Bhalode
Hi everyone, I was getting this error which read ' 'IndexedVar' object is not callable ' for a variable type. The variable is defined as a class variable and has dimensions m.C(i,j) in z and t axis. The program isnt able to take in any of the equations that I am giving it to because of this erro

Re: [Tutor] Error help

2016-08-30 Thread Alan Gauld via Tutor
On 30/08/16 03:22, Matthew Lehmberg wrote: I've been getting this error over and over and was wondering if someone could help me fix it. [image: Inline image 1] This is a text mailing list so attachments dont get through. Plese repost with your error message cut n paste into the message. Alan

[Tutor] Error help

2016-08-30 Thread Matthew Lehmberg
I've been getting this error over and over and was wondering if someone could help me fix it. [image: Inline image 1] ___ Tutor maillist - Tutor@python.org To unsubscribe or change subscription options: https://mail.python.org/mailman/listinfo/tutor

Re: [Tutor] error

2016-07-06 Thread Danny Yoo
> > Have you checked that you have the requisite permissions? That the > socket you are connecting to exists? If its a system call error the > problem is most likely in your environment rather than your code. > That particular error is from Windows. One common cause for it is a network firewall,

Re: [Tutor] error

2016-07-06 Thread Alan Gauld via Tutor
On 06/07/16 18:27, Moses, Samuel wrote: > I am getting an error. I tired to run the script in wing IDE. > Without the accompanying code we can only guess. > I am getting this error, > > "Traceback (most recent call last): > File "C:\Program Files (x86)\Wing IDE 5.1\bin\wingdb.py", line 822,

[Tutor] error

2016-07-06 Thread Moses, Samuel
I am getting an error. I tired to run the script in wing IDE. I am getting this error, "Traceback (most recent call last): File "C:\Program Files (x86)\Wing IDE 5.1\bin\wingdb.py", line 822, in main args['firststop'], err, netserver, pwfile_path) File "C:\Program Files (x86)\Wing IDE 5.1

Re: [Tutor] error in python code.

2016-06-21 Thread Danny Yoo
> You need to state some definitions so that we are sharing common > terminology. What does "skew" mean, for example? Note to others: I'm guessing that this has something to do with GC skew as described in https://en.wikipedia.org/wiki/GC_skew. But I'd rather not guess. I'd like Riaz to explain

Re: [Tutor] error in python code.

2016-06-21 Thread Danny Yoo
On Sun, Jun 19, 2016 at 10:38 PM, riaz tabassum wrote: > Sir i have a problem to solve to python code. I have attached the pic of > problem statement. Hi Riaz, Often when you're asking a question, starting with presentation of the code is often the wrong order to attack a problem. The reason

Re: [Tutor] error in python code.

2016-06-20 Thread Peter Otten
riaz tabassum wrote: > Sir i have a problem to solve to python code. I have attached the pic of > problem statement. This is a text-only mailing list. Please describe the problem you are trying to solve in plain English. Thank you. > code which i write is pasted here. > "def Skew(Genome): >

[Tutor] error in python code.

2016-06-20 Thread riaz tabassum
Sir i have a problem to solve to python code. I have attached the pic of problem statement. code which i write is pasted here. "def Skew(Genome): skew = {} #initializing the dictionary skew[0]=0#initializing the dictionary for i in range(len(Genome)): if i==0:

Re: [Tutor] Error getting cx_oracle to work with python 2.7

2015-01-13 Thread Danny Yoo
> By the way, please use copy-and-paste when showing the inputs and > outputs of what you're doing. You should try to show verbatim output > for any bug report or request for technical help. If you don't, you > can easily introduce mistakes that make it hard to diagnose what's > going on. I can

Re: [Tutor] Error getting cx_oracle to work with python 2.7

2015-01-13 Thread Danny Yoo
On Tue, Jan 13, 2015 at 9:13 AM, Arvind Ramachandran wrote: > Hi All > > > I am trying to get import cx_oracle work on my windows laptop > > I installed cx_Oracle-5.1.2-10g.win32-py2.7 on my laptop which is 64 bit as > the 64 bit msi seem to be specific for AMD desktops > > Anyways after installe

[Tutor] Error getting cx_oracle to work with python 2.7

2015-01-13 Thread Arvind Ramachandran
Hi All I am trying to get import cx_oracle work on my windows laptop I installed cx_Oracle-5.1.2-10g.win32-py2.7 on my laptop which is 64 bit as the 64 bit msi seem to be specific for AMD desktops Anyways after installed I do find cx_oracle.pyd in the lib site packages folder But when I try t

Re: [Tutor] Error 22

2015-01-09 Thread diliup gabadamudalige
:) On Thu, Jan 8, 2015 at 3:02 AM, Danny Yoo wrote: > >>> How I fix this error? when I open my python project (.py) it closes > >>> immediately. > >> > >> Since the op sent from Windows, I'm guessing he isn't opening up a cmd > >> window then running his program. But I'm not a windows guy latel

Re: [Tutor] Error 22

2015-01-07 Thread Danny Yoo
>>> How I fix this error? when I open my python project (.py) it closes >>> immediately. >> >> Since the op sent from Windows, I'm guessing he isn't opening up a cmd >> window then running his program. But I'm not a windows guy lately. >> Perhaps someone can tell him how to invoke the program? I

Re: [Tutor] Error 22

2015-01-07 Thread Joel Goldstick
On Wed, Jan 7, 2015 at 1:06 PM, Alan Gauld wrote: > On 08/01/15 01:14, ishay.yem...@gmail.com wrote: > >> How I fix this error? when I open my python project (.py) it closes >> immediately. >> >> please help. /: >> > > > Since the op sent from Windows, I'm guessing he isn't opening up a cmd windo

Re: [Tutor] Error 22

2015-01-07 Thread Alan Gauld
On 08/01/15 01:14, ishay.yem...@gmail.com wrote: How I fix this error? when I open my python project (.py) it closes immediately. please help. /: You need to tell us a lot more. What does your project code do? What does it look like? Can you send a small example that shows this error? What

Re: [Tutor] Error 22

2015-01-07 Thread Steven D'Aprano
On Thu, Jan 08, 2015 at 01:14:46AM +, ishay.yem...@gmail.com wrote: > How I fix this error? when I open my python project (.py) it closes > immediately. > > please help. /: You have given us no information to work with. You might as well have said "my program doesn't work, please fix it"

Re: [Tutor] Error 22

2015-01-07 Thread Mark Lawrence
On 08/01/2015 01:14, ishay.yem...@gmail.com wrote: How I fix this error? when I open my python project (.py) it closes immediately. please help. /: Please provide us with your OS, Python version, the code that produced this error and the entire traceback. -- My fellow Pythonistas, ask not

[Tutor] Error 22

2015-01-07 Thread ishay.yemini
How I fix this error? when I open my python project (.py) it closes immediately. please help. /: Sent from Windows Mail ___ Tutor maillist - Tutor@python.org To unsubscribe or change subscription options: https://mail.python.org/mailman/listin

Re: [Tutor] Error Cannot Import Name Core

2014-11-11 Thread Dave Angel
Felisha Lawrence Wrote in message: > Hello, > I am trying to install a version of pyart in OSX and I keep getting this > error > > -- > ImportError Traceback (most recent call last) > in () >

Re: [Tutor] Error Cannot Import Name Core

2014-11-11 Thread Danny Yoo
On Tue Nov 11 2014 at 5:17:53 PM Felisha Lawrence < felisha.lawre...@gmail.com> wrote: > Hello, > I am trying to install a version of pyart in OSX and I keep getting this > error > > --ImportError >

[Tutor] Error Cannot Import Name Core

2014-11-11 Thread Felisha Lawrence
Hello, I am trying to install a version of pyart in OSX and I keep getting this error --ImportError Traceback (most recent call last) in ()> 1 import pyart /Users/felishalawrence/anaconda/lib/

Re: [Tutor] Error in get pixel value in coordinate (x, y) using getPixel(x, y)

2014-08-18 Thread Whees Northbee
I'm so sorry for late reply, my laptop broken, the code actually I already put in thread before so I'll copy to here.. I don't know how to get pixel, I just searched and many link using 'getPixel' to get value of pixel.. I know color frame using 3 channel B G R to get pixel, but I just want to get

Re: [Tutor] Error message

2014-08-11 Thread Danny Yoo
Hi Richard, I would recommend asking the PyGame folks on this one. What you're running into is specific to that external library, and folks who work with PyGame have encountered the problem before: they'll know how to diagnose and correct it. For example: http://stackoverflow.com/questions

Re: [Tutor] Error message

2014-08-10 Thread RICHARD KENTISH
urces richardkentish$  I installed the python files from the python site, latest version for mac. Best wishes, Richard From: Steven D'Aprano To: tutor@python.org Sent: Sunday, 10 August 2014, 12:30 Subject: Re: [Tutor] Error message On Sun, Aug 10, 201

Re: [Tutor] Error message

2014-08-10 Thread RICHARD KENTISH
help. Best wishes, Richard From: RICHARD KENTISH To: "tutor@python.org" Sent: Sunday, 10 August 2014, 10:32 Subject: [Tutor] Error message Hi! Ive installed Python 2.7.8 and pygame 1.9.1 onto a macbook pro 10.9.4 Mavericks. The code is taken

Re: [Tutor] Error in printing out totalSystolic on paper (1018) [SOLVED]

2014-08-10 Thread Ken G.
Thanks you to the list for helping me solve my problem. I never had problem using and printing on paper "pr.write" in my coding until this latest one popped up. Yeah, this old dog is still learning new tricks here. LOL. Again, thanks. Ken ___ Tutor m

Re: [Tutor] Error in printing out totalSystolic on paper (1018)

2014-08-10 Thread Ken G.
On 08/10/2014 10:38 AM, Alex Kleider wrote: On 2014-08-10 06:41, Ken G. wrote: Receiving the following error from the terminal screen: Traceback (most recent call last): File "Blood Pressure05Print45.py", line 95, in pr.write(totalSystolic) TypeError: expected a character buffer object Por

Re: [Tutor] Error in printing out totalSystolic on paper (1018)

2014-08-10 Thread Peter Otten
Ken G. wrote: > Receiving the following error from the terminal screen: > > Traceback (most recent call last): >File "Blood Pressure05Print45.py", line 95, in > pr.write(totalSystolic) > TypeError: expected a character buffer object > > Portion of strip: > = > > pr.wri

[Tutor] Error in printing out totalSystolic on paper (1018)

2014-08-10 Thread Ken G.
Receiving the following error from the terminal screen: Traceback (most recent call last): File "Blood Pressure05Print45.py", line 95, in pr.write(totalSystolic) TypeError: expected a character buffer object Portion of strip: = pr.write (" "), pr.write (pulse), pr.write (

Re: [Tutor] Error message

2014-08-10 Thread Steven D'Aprano
On Sun, Aug 10, 2014 at 10:32:52AM +0100, RICHARD KENTISH wrote: > Hi! > > Ive installed Python 2.7.8 and pygame 1.9.1 onto a macbook pro 10.9.4 > Mavericks. > > The code is taken direct from the 'making games' book. Here it is pasted from > idle: Whenever you have a mysterious error in Python

[Tutor] Error message

2014-08-10 Thread RICHARD KENTISH
Hi! Ive installed Python 2.7.8 and pygame 1.9.1 onto a macbook pro 10.9.4 Mavericks. The code is taken direct from the 'making games' book. Here it is pasted from idle: import pygame, sys from pygame.locals import * pygame.init() displaysurf = pygame.dispaly.set_mode((400, 300)) pygame.display

Re: [Tutor] Error in get pixel value in coordinate (x, y) using getPixel(x, y)

2014-08-08 Thread Steven D'Aprano
On Thu, Aug 07, 2014 at 06:49:02PM +0700, Whees Northbee wrote: > Please help me... I'm using python 2.7.6, numpy 1.8.1, opencv 2.4.9.. > I want to get pixel value in one number like 255 not each value like these > R(190), G(23), B(45) from coordinate (x,y)... > I try these code > m_samples[k][i][j

Re: [Tutor] Error in get pixel value in coordinate (x, y) using getPixel(x, y)

2014-08-07 Thread Joel Goldstick
On Thu, Aug 7, 2014 at 7:49 AM, Whees Northbee wrote: > Please help me... I'm using python 2.7.6, numpy 1.8.1, opencv 2.4.9.. > I want to get pixel value in one number like 255 not each value like these > R(190), G(23), B(45) from coordinate (x,y)... > I try these code > m_samples[k][i][j]=getPixe

Re: [Tutor] Error in get pixel value in coordinate (x, y) using getPixel(x, y)

2014-08-07 Thread Alan Gauld
On 07/08/14 12:49, Whees Northbee wrote: Please help me... I'm using python 2.7.6, numpy 1.8.1, opencv 2.4.9.. I want to get pixel value in one number like 255 not each value like these R(190), G(23), B(45) from coordinate (x,y)... What do you expect that number to look like? The pixels are rep

[Tutor] Error in get pixel value in coordinate (x, y) using getPixel(x, y)

2014-08-07 Thread Whees Northbee
Please help me... I'm using python 2.7.6, numpy 1.8.1, opencv 2.4.9.. I want to get pixel value in one number like 255 not each value like these R(190), G(23), B(45) from coordinate (x,y)... I try these code m_samples[k][i][j]=getPixel(img,row,col) But get error: NameError: name 'getPixel' is not

Re: [Tutor] Error Handling in python

2014-07-25 Thread jitendra gupta
@All Thanks a lot, Yes "set -e" It work fine. This is what I am looking for but I got some extra things to learn :) . Thanks you again Thanks Jitendra On Thu, Jul 24, 2014 at 6:10 PM, Wolfgang Maier < wolfgang.ma...@biologie.uni-freiburg.de> wrote: > On 24.07.2014 14:37, Chris “Kwpolska” Warr

Re: [Tutor] Error Handling in python

2014-07-24 Thread Wolfgang Maier
On 24.07.2014 14:37, Chris “Kwpolska” Warrick wrote: It’s recommended to switch to the [[ syntax anyways, some people consider [ deprecated. Also, [ is actually /bin/[ while [[ lives in your shell (and is therefore faster). About the equals sign, == is the preferred syntax, and = is also consi

Re: [Tutor] Error Handling in python

2014-07-24 Thread Chris “Kwpolska” Warrick
On Thu, Jul 24, 2014 at 2:23 PM, Wolfgang Maier wrote: > On 24.07.2014 14:19, Chris “Kwpolska” Warrick wrote: >> >> > python test.py > if [ $? = 0 ]; then > python second.py > fi > > as your shell script. The [ ] and = should be doubled. >>> >>> >>

Re: [Tutor] Error Handling in python

2014-07-24 Thread Wolfgang Maier
On 24.07.2014 14:19, Chris “Kwpolska” Warrick wrote: python test.py if [ $? = 0 ]; then python second.py fi as your shell script. The [ ] and = should be doubled. ?? why that ? Double brackets can do more: http://stackoverflow.com/questions/2188199/how-to-use-double-or-single-br

Re: [Tutor] Error Handling in python

2014-07-24 Thread Chris “Kwpolska” Warrick
On Thu, Jul 24, 2014 at 2:14 PM, Wolfgang Maier wrote: > On 24.07.2014 14:09, Chris “Kwpolska” Warrick wrote: >> >> On Thu, Jul 24, 2014 at 2:01 PM, Wolfgang Maier >> wrote: >>> >>> Try something like this (assuming bash): >>> >>> python test.py >>> if [ $? = 0 ]; then >>> python second.py >

Re: [Tutor] Error Handling in python

2014-07-24 Thread Wolfgang Maier
On 24.07.2014 14:09, Chris “Kwpolska” Warrick wrote: On Thu, Jul 24, 2014 at 2:01 PM, Wolfgang Maier wrote: Try something like this (assuming bash): python test.py if [ $? = 0 ]; then python second.py fi as your shell script. The [ ] and = should be doubled. ?? why that ? But all th

Re: [Tutor] Error Handling in python

2014-07-24 Thread Chris “Kwpolska” Warrick
On Thu, Jul 24, 2014 at 2:01 PM, Wolfgang Maier wrote: > Try something like this (assuming bash): > > python test.py > if [ $? = 0 ]; then > python second.py > fi > > as your shell script. The [ ] and = should be doubled. But all this is not needed, all you need is: python test.py && python

Re: [Tutor] Error Handling in python

2014-07-24 Thread Steven D'Aprano
On Thu, Jul 24, 2014 at 05:05:24PM +0530, jitendra gupta wrote: > Hi All > > My shell script is not throwing any error when I am having some error in > Python code. This is a question about the shell, not about Python. I'm not an expert on shell scripting, but I'll try to give an answer. > ~~

Re: [Tutor] Error Handling in python

2014-07-24 Thread Wolfgang Maier
On 24.07.2014 13:35, jitendra gupta wrote: Hi All My shell script is not throwing any error when I am having some error in Python code. test.py ~~ def main(): print "Test" #some case error need to be thrown raise Exception("Here is error") if __name__ == "__main__"

Re: [Tutor] Error Handling in python

2014-07-24 Thread Chris “Kwpolska” Warrick
On Thu, Jul 24, 2014 at 1:35 PM, jitendra gupta wrote: > Hi All > > My shell script is not throwing any error when I am having some error in > Python code. > > In this case, I dont want to run my second.py > Even I am throwing error from my test.py, but still second.py is getting > executed, whic

[Tutor] Error Handling in python

2014-07-24 Thread jitendra gupta
Hi All My shell script is not throwing any error when I am having some error in Python code. test.py ~~ def main(): print "Test" #some case error need to be thrown raise Exception("Here is error") if __name__ == "__main__" main() ~~ second.py ~~ def

Re: [Tutor] Error message received when running “from scipy import interpolate”

2014-06-05 Thread Alan Gauld
On 05/06/14 23:36, Colin Ross wrote: I am attempting to run the following in python: |from scipyimport interpolate| This list is for those learning the core Python language and its standard library. Support for scipy is probably best gained from the scipy forum The MacPython list may also

[Tutor] Error message received when running “from scipy import interpolate”

2014-06-05 Thread Colin Ross
I am attempting to run the following in python: from scipy import interpolate I receive this error message: Traceback (most recent call last): File "", line 1, in File "/Library/Python/2.7/site-packages/scipy-0.11.0.dev_0496569_20111005-py2.7-macosx-10.7-x86_64.egg/scipy/interpolate/__init

Re: [Tutor] Error

2014-04-21 Thread Alan Gauld
On 21/04/14 19:41, Geocrafter . wrote: im trying to make a board, and is detecting the pieces. Here is my code:http://pastebin.com/L3tQLV2g And here is the error: http://pastebin.com/4FiJmywL Do you knwo hwo to fix it? You are passing in a cell location that results in an index out of range.

[Tutor] Error

2014-04-21 Thread Geocrafter .
im trying to make a board, and is detecting the pieces. Here is my code: http://pastebin.com/L3tQLV2g And here is the error: http://pastebin.com/4FiJmywL Do you knwo hwo to fix it? ___ Tutor maillist - Tutor@python.org To unsubscribe or change subscrip

Re: [Tutor] Error :SyntaxError: 'break' outside loop

2013-08-19 Thread Steven D'Aprano
Hello Zoya, and welcome! On Sun, Aug 18, 2013 at 10:18:06AM -0700, Zoya Tavakkoli wrote: > Hi everyone > > I write this code for color segmentation ,but after Run I recived this > error: > > SyntaxError: 'break' outside loop > > I could not resolve that ,could you please help me? Is the error

Re: [Tutor] Error :SyntaxError: 'break' outside loop

2013-08-19 Thread Chris Down
On 2013-08-19 10:55, Chris Down wrote: > On 2013-08-18 10:18, Zoya Tavakkoli wrote: > > if k == 27: > > > > break > > Well, you're not in a function here, so break doesn't make any sense. What is > it that you want to do? s/function/loop/ pgpV6iNWSeUjo.pgp Description: PGP signature ___

Re: [Tutor] Error :SyntaxError: 'break' outside loop

2013-08-19 Thread Chris Down
On 2013-08-18 10:18, Zoya Tavakkoli wrote: > if k == 27: > > break Well, you're not in a function here, so break doesn't make any sense. What is it that you want to do? pgpYkuuMtY52T.pgp Description: PGP signature ___ Tutor maillist - Tutor@python.o

[Tutor] Error :SyntaxError: 'break' outside loop

2013-08-19 Thread Zoya Tavakkoli
Hi everyone I write this code for color segmentation ,but after Run I recived this error: SyntaxError: 'break' outside loop I could not resolve that ,could you please help me? python.2.7.5 import cv2 import numpy as np cap = cv2.VideoCapture("C:\Users\Zohreh\Desktop\Abdomen.MST") while (1):

Re: [Tutor] Error in Game

2013-07-03 Thread bob gailer
On 7/2/2013 4:22 PM, Jack Little wrote: I know the code is correct As Joel said- how could it be, since you do not get the desired results? When posting questions tell us: - what version of Python? - what operating system? - what you use to edit (write) your code - what you do to run your code

Re: [Tutor] Error in Game

2013-07-02 Thread Joel Goldstick
On Tue, Jul 2, 2013 at 4:22 PM, Jack Little wrote: > The player has an option to upgrade or not. I know the code is correct, > but it doesn't send the player to the shop. Here is the code: > > def lvl3_2(): > print "You beat level 3!" > print "Congratulations!" > print "You have liber

Re: [Tutor] Error in Game

2013-07-02 Thread Alan Gauld
On 02/07/13 21:22, Jack Little wrote: The player has an option to upgrade or not. I know the code is correct, but it doesn't send the player to the shop. So what does it do? def lvl3_2(): print "You beat level 3!" print "Congratulations!" print "You have liberated the Bristol C

[Tutor] Error in Game

2013-07-02 Thread Jack Little
The player has an option to upgrade or not. I know the code is correct, but it doesn't send the player to the shop. Here is the code: def lvl3_2():     print "You beat level 3!"     print "Congratulations!"     print "You have liberated the Bristol Channel!"     print "[Y] to go to the shop or [N

Re: [Tutor] Error message...

2012-08-25 Thread Victoria Homsy
Thank you everyone for your help with my question - I understand what I was doing wrong now. I know I'm posting wrongly so I'm going to go and figure out how to do it properly for the future. Have a great day. ___ Tutor maillist - Tutor@python.org To

Re: [Tutor] Error message...

2012-08-25 Thread Matthew Ngaha
>Hi Victoria. im a total beginner aswell but i noticed something. shouldnt this >line: else: return s(0) == s(-1) and isPalindrome (s[1:-1]) be else: return s[0] == s[-1] and isPalindrome (s[1:-1]) it looks like you have the string s as a function which you are trying to call. what you wante

Re: [Tutor] Error message...

2012-08-24 Thread David
On 24/08/2012, Victoria Homsy wrote: > > However, this does not work - I get another error message. > Could somebody advise what I'm doing wrong here? Thank you. 1) You are not carefully reading the entire error message. 2) You are not allowing us to do it either. Some other things too, probably

Re: [Tutor] Error message...

2012-08-23 Thread Dave Angel
On 08/23/2012 11:33 AM, Victoria Homsy wrote: > > Dear All - sorry to bother you. I just tried to run this program: > > > def isPalindrome(s): > if len(s) <= 1: return True > else: return s[0] == s[-1] and isPalindrome (s[1:-1]) > isPalindrome('aba') > > > However when I run it in terminal it does

Re: [Tutor] Error message...

2012-08-23 Thread Mark Lawrence
On 23/08/2012 16:33, Victoria Homsy wrote: Dear All - sorry to bother you. I just tried to run this program: def isPalindrome(s): if len(s) <= 1: return True else: return s[0] == s[-1] and isPalindrome (s[1:-1]) isPalindrome('aba') However when I run it in terminal it doesn't give me any

  1   2   3   >