Re: [Tutor] [Python-Help] Writing hello world

2019-06-29 Thread Bob Gailer
On Jun 28, 2019 9:26 AM, "Erastus muriithi" wrote: > > Iam a student..iam interested in learning python,,I don't know how to study this python.kindly help me how to go about it..Thankyou First make sure you have python installed on your computer. If you need help with that let us know what kind

Re: [Tutor] Python Help

2018-10-26 Thread Alan Gauld via Tutor
On 26/10/2018 18:20, Adam Eyring wrote: > beef = (beefmeals * 15.95) Note that the parens here are completely redundant. They don't break anything but neither do they contribute anything. WE already have LISP(*) for those who love parens, no need for (so many of) them in Python (*)Lots of

Re: [Tutor] Python Help

2018-10-26 Thread Adam Eyring
On Fri, Oct 26, 2018 at 3:03 PM Bob Gailer wrote: > On Oct 26, 2018 1:20 PM, "Adam Eyring" wrote: > > > > Try this cleaned up version with colons in the right places, dollar > signs removed, and other corrections: > > Does it do what you want? > > > beefmeals=int(input("Enter number of beef

Re: [Tutor] Python Help

2018-10-26 Thread Adam Eyring
Try this cleaned up version with colons in the right places, dollar signs removed, and other corrections: beefmeals=int(input("Enter number of beef meals: ")) shitmeals=int(input("Enter number of vegan meals: ")) party = beefmeals + shitmeals print("Total meals", party) a = 0 b = 0 c = 0 if party

Re: [Tutor] Python Help

2018-10-26 Thread Bob Gailer
On Oct 26, 2018 1:20 PM, "Adam Eyring" wrote: > > Try this cleaned up version with colons in the right places, dollar signs removed, and other corrections: Does it do what you want? > beefmeals=int(input("Enter number of beef meals: ")) > shitmeals=int(input("Enter number of vegan meals: ")) >

Re: [Tutor] Python Help

2018-10-26 Thread Bob Gailer
On Oct 26, 2018 6:11 AM, "Ben Placella" wrote: > > I need to write code that runs a cost calculating program with many > different variables and I honestly don't understand it Could you be more specific? What exactly don't you understand, or even better what do you understand? my code is: How

Re: [Tutor] Python Help

2018-10-26 Thread Alan Gauld via Tutor
On 25/10/2018 23:14, Ben Placella wrote: Please always post code in plain text not HTML or Rich text. Otherwise we lose all the formatting which is important in Python. > beefmeals=int(input("Enter number of beef meals: ")) > shitmeals=int(input("Enter number of vegan meals: ")) >

Re: [Tutor] Python Help (shits killing me)

2018-10-26 Thread Steven D'Aprano
On Thu, Oct 25, 2018 at 06:13:31PM -0400, Ben Placella wrote: > So I have to make a fibonacci sequence, and I'm not sure what is wrong with > my code [...] > attached is a photo of what the output SHOULD look like No it isn't. For security (anti-spam, anti-virus) reasons, this mailing list

Re: [Tutor] Python Help

2018-10-26 Thread Steven D'Aprano
On Thu, Oct 25, 2018 at 06:14:41PM -0400, Ben Placella wrote: > I need to write code that runs a cost calculating program with many > different variables and I honestly don't understand it, my code is: > beefmeals=int(input("Enter number of beef meals: ")) > shitmeals=int(input("Enter number of

Re: [Tutor] Python Help (shits killing me)

2018-10-26 Thread Alan Gauld via Tutor
Plain text is preferred for code since otherwise the mail system removes all indentation making the code hard to understand. On 25/10/2018 23:13, Ben Placella wrote: > So I have to make a fibonacci sequence, and I'm not sure what is wrong with > my code > #This program illustrates the fibonacci

Re: [Tutor] Python Help (shits killing me)

2018-10-26 Thread Andrew Van Valkenburg
nth = n1 + n I don't see where n is defined anywhere. Should be n2? On Fri, Oct 26, 2018 at 6:09 AM Ben Placella wrote: > So I have to make a fibonacci sequence, and I'm not sure what is wrong with > my code > #This program illustrates the fibonacci sequence > nterms=int(input("Please enter

[Tutor] Python Help

2018-10-26 Thread Ben Placella
I need to write code that runs a cost calculating program with many different variables and I honestly don't understand it, my code is: beefmeals=int(input("Enter number of beef meals: ")) shitmeals=int(input("Enter number of vegan meals: ")) party=beefmeals+shitmeals print(party) if party<=50

[Tutor] Python Help (shits killing me)

2018-10-26 Thread Ben Placella
So I have to make a fibonacci sequence, and I'm not sure what is wrong with my code #This program illustrates the fibonacci sequence nterms=int(input("Please enter how many terms you would like to know: ")) n1 = 1 n2 = 1 count = 0 if nterms <= 0: print("Please enter a positive integer") elif

Re: [Tutor] Python help

2018-04-02 Thread Alan Gauld via Tutor
On 03/04/18 01:19, Steven D'Aprano wrote: > >> if Grade not in 'A','B','C','D','E','F': > Actually, that returns a tuple consisting of a flag plus five more > strings: > > py> 'A' in 'A','B','C', 'D', 'E', 'F' > (True, 'B','C', 'D', 'E', 'F') Although in the context of the program the colon

Re: [Tutor] Python help

2018-04-02 Thread Alan Gauld via Tutor
On 03/04/18 01:19, Steven D'Aprano wrote: > On Tue, Apr 03, 2018 at 01:00:59AM +0100, Alan Gauld via Tutor wrote: > >> You need to use 'in' instead. That will check whether >> or not Grade is *one* of the values in the tuple. >> >> if Grade not in 'A','B','C','D','E','F': > Actually, that

Re: [Tutor] Python help

2018-04-02 Thread Steven D'Aprano
On Tue, Apr 03, 2018 at 01:00:59AM +0100, Alan Gauld via Tutor wrote: > You need to use 'in' instead. That will check whether > or not Grade is *one* of the values in the tuple. > > if Grade not in 'A','B','C','D','E','F': Actually, that returns a tuple consisting of a flag plus five more

Re: [Tutor] Python help

2018-04-02 Thread Alan Gauld via Tutor
On 02/04/18 23:44, Shannon Evans via Tutor wrote: > Hi, I am trying to write a code with if statements but the code keeps just > repeating and not carrying on. There are quite a few problems here, see comments below. > while True: > try: > Grade = int(raw_input("Please enter your

Re: [Tutor] Python help

2018-04-02 Thread Steven D'Aprano
On Mon, Apr 02, 2018 at 11:44:39PM +0100, Shannon Evans via Tutor wrote: > Hi, I am trying to write a code with if statements but the code keeps just > repeating and not carrying on. > I am trying to get user to input a grade, either A, B, C, D, E or F and > trying to have an error message if

[Tutor] Python help

2018-04-02 Thread Shannon Evans via Tutor
Hi, I am trying to write a code with if statements but the code keeps just repeating and not carrying on. I am trying to get user to input a grade, either A, B, C, D, E or F and trying to have an error message if anything but these values are inputted. This is what i've wrote so far: while True:

Re: [Tutor] PYTHON HELP

2018-03-15 Thread Alan Gauld via Tutor
On 15/03/18 13:42, Prashanth Ram wrote: > My code is working well in localhost but when I try to open that in VPS > server I'm failing in running that code. I'm getting errors. I have > installed Chrome and it's drivers. Even though I'm facing errors. > > I request your team to help me in this.

Re: [Tutor] PYTHON HELP

2018-03-15 Thread David Rock
> On Mar 15, 2018, at 08:42, Prashanth Ram wrote: > > I'm a beginner in Python. I have written a code to open browsers using > selenium framework. I have purchased a Virtual Private Server (VPS) with > CentOS 6.9 installed from GoDaddy. > > My code is working well in

[Tutor] PYTHON HELP

2018-03-15 Thread Prashanth Ram
Dear Sir/Madam, I'm a beginner in Python. I have written a code to open browsers using selenium framework. I have purchased a Virtual Private Server (VPS) with CentOS 6.9 installed from GoDaddy. My code is working well in localhost but when I try to open that in VPS server I'm failing in running

Re: [Tutor] Python Help

2017-09-16 Thread Mats Wichmann
On 09/15/2017 10:25 AM, Alan Gauld via Tutor wrote: > On 15/09/17 04:08, Pratyusha Thundena wrote: >> How do check to see if string ‘garden’ contains a >> vowel(a, e , i , o, u , or y) using a for loop? > > Hi, this sounds like homework and we won't do > your homework for you, but we do give

Re: [Tutor] Python Help

2017-09-15 Thread Alan Gauld via Tutor
On 15/09/17 04:08, Pratyusha Thundena wrote: > How do check to see if string ‘garden’ contains a > vowel(a, e , i , o, u , or y) using a for loop? Hi, this sounds like homework and we won't do your homework for you, but we do give hints. How would you do this without a computer? There are (at

Re: [Tutor] Python help

2017-07-23 Thread Cameron Simpson
On 23Jul2017 13:40, Winonah Ojanen wrote: I also tried the correct command for the mac ox s in terminal shell, running: Jims-MacBook-Pro-2:~ Jim$ PYTHONPATH="/Users/Jim/Documents/illustris_python:$PYTHONPATH export PYTHONPATH [...] I did use the pip command and am

Re: [Tutor] Python Help

2017-07-22 Thread Cameron Simpson
On 23Jul2017 00:20, Alan Gauld wrote: On 22/07/17 19:14, Winonah Ojanen wrote: using python with anaconda in jupiter notebook. However, I am having Usual caveat: The tutor list is targeted at the standard library so any help for non standard library modules is best

Re: [Tutor] Python Help

2017-07-22 Thread Alan Gauld via Tutor
On 22/07/17 19:14, Winonah Ojanen wrote: > using python with anaconda in jupiter notebook. However, I am having Usual caveat: The tutor list is targeted at the standard library so any help for non standard library modules is best sought from the library support fora. In this case that includes

[Tutor] Python Help

2017-07-22 Thread Winonah Ojanen
Hello, I am an intern working with the Center for Computational Astrophysics through the American Museum of Natural History as an astrophysics intern. I am working with a galaxy simulation program called "illustris" which you can find at illustris-project.org. I am working to download example

Re: [Tutor] Python - help with something most essential

2017-06-12 Thread Abdur-Rahmaan Janhangeer
i might add that with open( . . . instead of foo = open( . . . also shows some maturity in py Abdur-Rahmaan Janhangeer, Mauritius abdurrahmaanjanhangeer.wordpress.com On 11 Jun 2017 12:33, "Peter Otten" <__pete...@web.de> wrote: > Japhy Bartlett wrote: > > > I'm not sure that they cared

Re: [Tutor] Python - help with something most essential

2017-06-11 Thread Peter Otten
Japhy Bartlett wrote: > I'm not sure that they cared about how you used file.readlines(), I think > the memory comment was a hint about instantiating Counter()s Then they would have been clueless ;) Both Schtvveer's original script and his subsequent "Verschlimmbesserung" -- beautiful german

Re: [Tutor] Python - help with something most essential

2017-06-10 Thread Japhy Bartlett
It's really awkward the way you're using Counter here... you're making new instances in every lambda (which is not great for memory usage), and then not actually using the Counter functionality: return sum(1 for _ in filter(lambda x: Counter(word) == Counter(x.strip()), fileContent)) (the

Re: [Tutor] Python - help with something most essential

2017-06-06 Thread Peter Otten
Schtvveer Schvrveve wrote: > I need someone's help. I am not proficient in Python and I wish to > understand something. I was in a job pre-screening process where I was > asked to solve a simple problem. > > The problem was supposed to be solved in Python and it was supposed to > take two

Re: [Tutor] Python - help with something most essential

2017-06-05 Thread David Rock
> On Jun 5, 2017, at 09:36, Schtvveer Schvrveve wrote: > > > And I was rejected. I just wish to understand what I could have done for > this to be better? > > I am a Python beginner, so I'm sure there are things I don't know, but I > was a bit surprised at the abruptness of

[Tutor] Python - help with something most essential

2017-06-05 Thread Schtvveer Schvrveve
I need someone's help. I am not proficient in Python and I wish to understand something. I was in a job pre-screening process where I was asked to solve a simple problem. The problem was supposed to be solved in Python and it was supposed to take two arguments: filename and word. The program

Re: [Tutor] python help

2017-04-13 Thread George Fischhof
Hi Christina, you should use an editor or an IDE (Integrated Development Environment) (a quite good and my favorite IDE is PyCharm https://www.jetbrains.com/pycharm/download/#section=windows ), write the script in it,then save, then run it from the IDE or from command line with similar command:

Re: [Tutor] python help

2017-04-13 Thread Qiao Qiao
If you are going to send it to your professor. Maybe just copy all your result to a txt file and send the text? Qiao Qiao Qiao Web Engineer On Thu, Apr 13, 2017 at 10:33 AM, Christina Hammer < hamme...@mail.montclair.edu> wrote: > Hi, > I downloaded the newest version of Python on my windows

Re: [Tutor] python help

2017-04-13 Thread Alan Gauld via Tutor
On 13/04/17 15:33, Christina Hammer wrote: > I downloaded the newest version of Python on my windows computer and am > having some trouble using it. I need to save my work because I am using it > for an online class and am going to have to send it to my professor. But I > cannot access a tool bar

[Tutor] python help

2017-04-13 Thread Christina Hammer
Hi, I downloaded the newest version of Python on my windows computer and am having some trouble using it. I need to save my work because I am using it for an online class and am going to have to send it to my professor. But I cannot access a tool bar that would allow me to save it. I'm not sure if

Re: [Tutor] Python Help

2016-11-16 Thread Alan Gauld via Tutor
On 16/11/16 22:51, Omari Lamar wrote: > I am looking for assistance with the python language. Can you send out an > eblast asking that if anyone can offer 1 on 1 assistance via skype to cover > the basics that would be greatly appreciated. Further to Bens message, we don't offer private 1-1

Re: [Tutor] Python Help

2016-11-16 Thread Ben Finney
Omari Lamar writes: > I am looking for assistance with the python language. Yes, we offer that here. You need to ask your question in this forum and volunteers will collaborate to teach you, in public. This way many other people can also benefit from observing the

[Tutor] Python Help

2016-11-16 Thread Omari Lamar
Good Day, I am looking for assistance with the python language. Can you send out an eblast asking that if anyone can offer 1 on 1 assistance via skype to cover the basics that would be greatly appreciated. -- Omari Lamar Creating My Future ___ Tutor

Re: [Tutor] Python help

2016-10-17 Thread Andrew Koe
Hi, Also, you have a typo in your elif path == '2' statement. It should be rock = input('Do you want to pick up the rock') with one equal sign not rock == input ('Do you want to pick up the rock'). -Andrew On Sat, Oct 15, 2016 at 6:48 PM, Nicholas Hopkins

Re: [Tutor] Python help

2016-10-16 Thread Alex Kleider
On 2016-10-15 15:48, Nicholas Hopkins wrote: Hello Please tell me what is wrong with my code and how I can put an if else statement inside of another if else statement This is my code: path = input('Which path number will you take?') if path == '1': print('You took the first path')

Re: [Tutor] Python help

2016-10-16 Thread Alan Gauld via Tutor
On 15/10/16 23:48, Nicholas Hopkins wrote: > Please tell me what is wrong with my code and how I can put an if else > statement > inside of another if else statement You are almost right but... > This is my code: > path = input('Which path number will you take?') > if path == '1': >

[Tutor] Python help

2016-10-16 Thread Nicholas Hopkins
Hello Please tell me what is wrong with my code and how I can put an if else statement inside of another if else statement This is my code: path = input('Which path number will you take?') if path == '1': print('You took the first path') elif path == '2': print('You

Re: [Tutor] Python help

2015-08-24 Thread William
This is in response to a much earlier posting for which I don't have the email [Tutor] Python help IDN3 iradn3777 at gmail.com Thu Aug 13 03:01:12 CEST 2015 Previous message (by thread): [Tutor] revisiting a puzzle about -3**2 vs (-3)**2 Next message (by thread): [Tutor] Python help Messages

[Tutor] Python help

2015-08-13 Thread IDN3
To whom it may concern, I am having a problem solving the below question. I have used every resource that I could find to help me, but I'm seeing nothing. Can someone out there please help me understand the below question and learn how to accomplish this task in Python? I would really

Re: [Tutor] Python help

2015-08-13 Thread Cameron Simpson
On 13Aug2015 10:34, ALAN GAULD alan.ga...@btinternet.com wrote: On 13/08/15 02:01, IDN3 wrote: [...snip...] Condition: If c is less than 5, then the loop will continue; else, it will end. 3. *Problem 2:*Print a string variable that states the number of loops required to meet the condition

Re: [Tutor] Python help

2015-08-13 Thread Alan Gauld
On 13/08/15 10:44, Cameron Simpson wrote: You obviously did not send the whole question. I don't see any mention of if/then/else? Actually, the question's Condition: section is written in exactly those terms. Oops, so it is. My bad. -- Alan G Author of the Learn to Program web site

Re: [Tutor] Python help

2015-08-13 Thread Alan Gauld
On 13/08/15 02:01, IDN3 wrote: To whom it may concern, I am having a problem solving the below question. I have used every resource that I could find to help me, but I'm seeing nothing. Can someone out there please help me understand the below question and learn how to accomplish this

[Tutor] python help

2015-07-06 Thread Cary Developer
I am looking for help on getting started with Python. This link says it all: http://raleigh.craigslist.org/cpg/5108772711.html Any help (and response to the CL post) would be truly appreciated. Thanks. -Roger ___ Tutor maillist -

Re: [Tutor] python help

2015-07-06 Thread Mark Lawrence
On 06/07/2015 15:24, Cary Developer wrote: Welcome. I am looking for help on getting started with Python. You've come to the right place, that's always a good start. This link says it all: http://raleigh.craigslist.org/cpg/5108772711.html Any help (and response to the CL post) would be

Re: [Tutor] python help

2015-07-06 Thread Alan Gauld
On 06/07/15 15:24, Cary Developer wrote: I am looking for help on getting started with Python. This link says it all: http://raleigh.craigslist.org/cpg/5108772711.html It would be more helpful to post the content of the query, not all mail subscribers can access web pages at the time of

Re: [Tutor] python help

2015-07-06 Thread Matt Williams
Personally I would start with Python 2.7, and start with simple scripts. The standard library in Python is very wide, and having a good understanding of what is already there is very useful. As to GUI/ Web/ etc. - I think it depends on what you want to do. However, you will need the basics

Re: [Tutor] python help

2015-07-06 Thread Mark Lawrence
On 06/07/2015 22:09, Matt Williams wrote: Personally I would start with Python 2.7, and start with simple scripts. I think it makes much more sense to learn Python 3 and if you need code to run on both 2 and 3 take the advice here https://docs.python.org/3/howto/pyporting.html By the way,

[Tutor] Python Help

2015-06-24 Thread Nirav Patel via Tutor
Hi, my name is Nirav.  I have a question about my code. I am a student at a university that does research using a program called VisIt. We use VisIt to help our learning in computational fluid dynamics and using the information, we study the turbulence of scramjets.  One simple thing I am

Re: [Tutor] Python Help

2015-06-24 Thread Alan Gauld
On 24/06/15 20:25, Nirav Patel via Tutor wrote: ... research using a program called VisIt. One simple thing I am trying to do is using python to call a command that processes all the files that exist within the directory by having visit access the files. I have started to code below, but

[Tutor] Python Help

2015-05-04 Thread Grace Anne St Clair-Bates
I am trying to write a program that uses while and if loops, but my print statements are not going through and showing up when I run the module. I have tried numerous things and changed in the code and cannot for the life of me figure out why it won't print. If someone could help that would be

Re: [Tutor] Python Help

2015-05-04 Thread Peter Otten
Grace Anne St Clair-Bates wrote: I am trying to write a program that uses while and if loops, but my print statements are not going through and showing up when I run the module. I have tried numerous things and changed in the code and cannot for the life of me figure out why it won't print.

Re: [Tutor] Python Help

2015-05-04 Thread Alan Gauld
On 04/05/15 06:00, Grace Anne St Clair-Bates wrote: I am trying to write a program that uses while and if loops, but my print statements are not going through and showing up when I run the module. I have tried numerous things and changed in the code and cannot for the life of me figure out why

[Tutor] Python Help

2015-04-14 Thread Janelle Harb
Hello! I have a Mac and idle refuses to quit no matter what I try to do. What should I do? Thank you! -Janelle ___ Tutor maillist - Tutor@python.org To unsubscribe or change subscription options: https://mail.python.org/mailman/listinfo/tutor

Re: [Tutor] Python Help

2015-04-14 Thread Alan Gauld
On 14/04/15 02:39, Janelle Harb wrote: Hello! I have a Mac and idle refuses to quit no matter what I try to do. What should I do? You can start by giving us some specific examples of things you did that didn't work. Starting with the obvious: 1) Did you click the little close icon? 2)

Re: [Tutor] Python Help with Program

2015-02-16 Thread Steven D'Aprano
Hi Tina, or Taylor, welcome! Sorry but your email From header says your name is Tina and your signature says Taylor so I'm not sure which name you prefer. On Sun, Feb 15, 2015 at 07:26:35PM -0600, Tina Figz wrote: I'm having a problem with my program and I'm not sure how to correct it (I'm

Re: [Tutor] Python Help with Program

2015-02-16 Thread Mark Lawrence
On 16/02/2015 08:24, Alan Gauld wrote: On 16/02/15 01:26, Tina Figz wrote: I'm having a problem with my program and I'm not sure how to correct it (I'm in an intro programming class). My program is supposed two numbers and count the number of carry operations. This is what I have: n1 =

Re: [Tutor] Python Help with Program

2015-02-16 Thread Alan Gauld
On 16/02/15 01:26, Tina Figz wrote: I'm having a problem with my program and I'm not sure how to correct it (I'm in an intro programming class). My program is supposed two numbers and count the number of carry operations. This is what I have: n1 = int(raw_input('Number #1: ')) n2 =

[Tutor] Python Help with Program

2015-02-15 Thread Tina Figz
I'm having a problem with my program and I'm not sure how to correct it (I'm in an intro programming class). My program is supposed two numbers and count the number of carry operations. This is what I have: n1 = int(raw_input('Number #1: ')) n2 = int(raw_input('Number #2: ')) add = n1 + n2

[Tutor] Python help

2014-11-03 Thread Juwel Williams
Good Day, I am in a python class at my school. I am very confused, he gives us assignments but I am not sure how to attempt it. I am confused about tuples, lists and dictionaries. Now he has moved on to class and modules. Can you assist me please. He has given us a module to go by. It says

Re: [Tutor] Python help

2014-11-03 Thread Alan Gauld
On 03/11/14 20:26, Juwel Williams wrote: I am confused about tuples, lists and dictionaries. The more specific your question the easier it is for us to answer. What exactly is confusing you about them? What they are? How to use them? The syntax? Now he has moved on to class and modules. Can

[Tutor] Python Help

2014-10-20 Thread Taylor Ruzgys
Hi, I was wondering if you could help me with an assignment that I'm doing involving Python? ___ Tutor maillist - Tutor@python.org To unsubscribe or change subscription options:

Re: [Tutor] Python Help

2014-10-20 Thread Alan Gauld
On 20/10/14 03:56, Taylor Ruzgys wrote: Hi, I was wondering if you could help me with an assignment that I'm doing involving Python? Yes, we can help you do it. We won't do it for you. You need to tell us what the assignment is, how you have tried to solve it, including any code you've

[Tutor] Python Help

2014-04-09 Thread Adam Grierson
Hi I'm using 3D climate data (ending in “.nc”). The cube contains time, longitude and latitude. I would like to look at the average output over the last 20 years. The time field spans back hundreds of years and I only know how to collapse the entire field into a mean value. How can I tell

Re: [Tutor] Python Help

2014-04-09 Thread Alan Gauld
On 09/04/14 20:59, Adam Grierson wrote: I'm using 3D climate data (ending in “.nc”). The cube contains time, longitude and latitude. I would like to look at the average output over the last 20 years. The time field spans back hundreds of years and I only know how to collapse the entire field

Re: [Tutor] Python Help

2014-04-09 Thread Chris Calloway
On 4/9/2014 3:59 PM, Adam Grierson wrote: I'm using 3D climate data (ending in “.nc”). The cube contains time, longitude and latitude. I would like to look at the average output over the last 20 years. The time field spans back hundreds of years and I only know how to collapse the entire field

[Tutor] Python help

2014-02-28 Thread Tone Lite
Hello, I am having trouble coming up with a solution to this exercise and any help would be appreciated, thanks! I have attached the code below. '''exercise to complete and test this function''' def joinStrings(stringList): '''Join all the strings in stringList into one string, and

Re: [Tutor] Python help

2014-02-28 Thread Ben Finney
Tone Lite tonelitebe...@gmail.com writes: I am having trouble coming up with a solution to this exercise and any help would be appreciated, thanks! I have attached the code below. The code you present appears to be the exercise. Are you asking for someone to write the solution for you? That

Re: [Tutor] Python help

2014-02-28 Thread James Chapman
The answer lies in this page: http://docs.python.org/3.3/library/stdtypes.html#string-methods -- James On 28 February 2014 11:44, James Chapman ja...@uplinkzero.com wrote: The answer lies in this page: http://docs.python.org/3.3/library/stdtypes.html#string-methods -- James On 28

Re: [Tutor] [Python-Help] Please help replace Long place-names with short place-names in many files with Python

2013-09-01 Thread bob gailer
Welcome. We are a few volunteers who like to help you when you have tried something and are stuck. It is best to post to just one email list. Most of us monitor tutor and help. We don't write programs for you. Some of us would be happy to do that for a consulting fee. Why Python? What

Re: [Tutor] [Python-Help] Instancing class issue

2013-08-15 Thread Dino Bektešević
Hello, The name of the variable doesn't matter, that's still what it does; you can think of it as encapsulating any other keyword arguments. def foo(bar, **kwargs): ... print(bar: %s % (bar,)) ... print(kwargs: %r % (kwargs,)) ... foo(bar, baz=qux,

Re: [Tutor] [Python-Help] Instancing class issue

2013-08-12 Thread Chris Down
Hi Dino, On 2013-08-12 20:32, Dino Bektešević wrote: def __init__(self, **keys): from . import util self.keys=keys self.load() where I don't understand what **keys mean, I've only seen that as **kwargs meaning other key words and arguments in examples. The

[Tutor] Python help!!

2013-04-02 Thread David Mitchell
Hi! How do I go through a text file, finding specific words/numbers/phrases and edit them to say different things? I do not want to edit the text file, I would rather open and read from the text file and write to a new file. I do NOT want to know how to replace a specific word with another

Re: [Tutor] Python help!!

2013-04-02 Thread taserian
On Tue, Apr 2, 2013 at 12:49 PM, David Mitchell d_mitchel...@hotmail.comwrote: Hi! How do I go through a text file, finding specific words/numbers/phrases and edit them to say different things? I do not want to edit the text file, I would rather open and read from the text file and write to

Re: [Tutor] Python help!!

2013-04-02 Thread Bod Soutar
On 2 April 2013 17:49, David Mitchell d_mitchel...@hotmail.com wrote: Hi! How do I go through a text file, finding specific words/numbers/phrases and edit them to say different things? I do not want to edit the text file, I would rather open and read from the text file and write to a new

Re: [Tutor] Python help!!

2013-04-02 Thread Elegbede Muhammed Oladipupo
+dipo.elegbede=dipoelegbede@python.orgDate: Tue, 2 Apr 2013 12:49:32 To: tutor@python.orgtutor@python.org Subject: [Tutor] Python help!! ___ Tutor maillist - Tutor@python.org To unsubscribe or change subscription options: http://mail.python.org

[Tutor] python help!

2013-02-09 Thread Ghadir Ghasemi
Hi guys can you tell me what is wrong with the second part of this code(elif choice == '2'). When I type something other than 0-255, it correctly asks again for an input but when I enter a number from 0-255 it does nothing : def show_menu(): print(===) print(1-binary to

Re: [Tutor] python help!

2013-02-09 Thread Peter Otten
Ghadir Ghasemi wrote: Hi guys can you tell me what is wrong with the second part of this code(elif choice == '2'). When I type something other than 0-255, it correctly asks again for an input but when I enter a number from 0-255 it does nothing : It doesn't do nothing, it keeps running the

Re: [Tutor] python help!

2013-02-09 Thread D . V . N . Sarma డి . వి . ఎన్ . శర్మ
I have altered the program to run on Python 2.7.3 Perhaps it will run on Python 3 with small/or no alterations. def show_menu(): print(===) print(1-binary to denary) print(2-denary to binary) print(3-exit) print(===) while True: show_menu()

Re: [Tutor] python help!

2013-02-09 Thread D . V . N . Sarma డి . వి . ఎన్ . శర్మ
Remove also 'continue' statement under the 'if denary2 not in range(0,256)' clause. On Sun, Feb 10, 2013 at 7:06 AM, D.V.N.Sarma డి.వి.ఎన్.శర్మ dvnsa...@gmail.com wrote: I have altered the program to run on Python 2.7.3 Perhaps it will run on Python 3 with small/or no alterations. def

Re: [Tutor] Python Help

2013-01-26 Thread wrw
On Jan 23, 2013, at 4:37 PM, Grady Trexler grady...@gmail.com wrote: Below is my code. I am using python 2.4 It tells me I have a syntax error. Please help! (I think the first twenty lines have what you would be looking for. After that it just repeats itself.) #scenario maker

Re: [Tutor] Python Help

2013-01-26 Thread Dave Angel
On 01/23/2013 04:37 PM, Grady Trexler wrote: Below is my code. I am using python 2.4 It tells me I have a syntax error. I don't see any such thing. Plesae include the traceback, which will indicate WHERE you have a syntax error. And if you look yourself, you'll probably spot it, since

Re: [Tutor] python help?

2012-10-01 Thread c smith
It is hard to see things like images and attachments. I think purely html is preferred, but i would have to look over 'the list rules' again. You should look into dictionaries as the structure to hold your info. ___ Tutor maillist - Tutor@python.org To

Re: [Tutor] python help?

2012-10-01 Thread Dave Angel
On 10/01/2012 08:16 PM, c smith wrote: It is hard to see things like images and attachments. I think purely html is preferred, but i would have to look over 'the list rules' again. Since this is a text mailing-list, it's text messages that are preferred. html messages frequently trash

Re: [Tutor] python help?

2012-10-01 Thread Dave Angel
On 09/30/2012 02:02 AM, patrick Howard wrote: I have to write a program that takes an input file, with students names and various grades. My vindictive teacher also added grades that are not supposed to count, so I need to pick the grades that are 'HM1-4; not HW, or TEST or anything else.

Re: [Tutor] python help?

2012-10-01 Thread Dave Angel
On 10/01/2012 09:44 PM, Dave Angel wrote: On 09/30/2012 02:02 AM, patrick Howard wrote: I have to write a program that takes an input file, with students names and various grades. My vindictive teacher also added grades that are not supposed to count, so I need to pick the grades that are

[Tutor] Python help

2012-09-15 Thread Daniel Hulse
Hi. I am trying to solve a problem and I'm stuck. The problem is something like as x goes up by 1, y goes up by the previous value times 2. I have no idea where to start. So lets say x = 10 and y=5, when x=11, why would be equal to 10. ___ Tutor

Re: [Tutor] Python help

2012-09-15 Thread Joel Goldstick
On Sat, Sep 15, 2012 at 11:21 AM, Daniel Hulse dhuls...@gmail.com wrote: Hi. I am trying to solve a problem and I'm stuck. The problem is something like as x goes up by 1, y goes up by the previous value times 2. I have no idea where to start. So lets say x = 10 and y=5, when x=11, why would

Re: [Tutor] [Python-Help] What is lambdas in Python??

2011-12-27 Thread bob gailer
On 12/27/2011 8:36 PM, Hitesh Kumar wrote: I really don't get it. What is lambda? I keep seeing it and I couldn't understand anything online about it. lambda An anonymous inline function consisting of a single /expression/ #term-expression which is evaluated when the function is called.

Re: [Tutor] [Python-Help] What is lambdas in Python??

2011-12-27 Thread R. Alan Monroe
I really don't get it. What is lambda? I keep seeing it and I couldn't understand anything online about it. It took me a while to get it too. It's for those rare times when you want a throwaway function. Like you want to do something kind of functioney without going to the trouble of

[Tutor] Python help on unicode needed....

2011-03-11 Thread cocron
Hello Danny, Can you perhaps help me on a python Unicode issue? I have an audio collection of many chinese titles on my music Database. I would like to rename all music titles in the directories and subdirectories to either their ascii values (preceeding with a certain character/s like

Re: [Tutor] Python Help

2010-09-28 Thread masawudu bature
don't know how to write a code to count the number of divisors From: David Hutto smokefl...@gmail.com To: masawudu bature mass0...@yahoo.ca Cc: tutor@python.org Sent: Mon, September 27, 2010 11:36:05 PM Subject: Re: [Tutor] Python Help On Tue, Sep 28, 2010 at 12:15

Re: [Tutor] Python Help

2010-09-28 Thread Alan Gauld
masawudu bature mass0...@yahoo.ca wrote The output is suppose to count the number of even divisors the range has. You need to work this through again in your head: def evenCount(b) : This function takes a parameter b but you never use b in the function... for n in range(x, y+1) :

  1   2   >