Re: Program prints questions for user input, but won't show the answer output

2016-05-18 Thread Jake Kobs
MRAB, I am not quite sure how to return the print statements so I thought that returning the displayInfo def would help.. Im so lost. -- https://mail.python.org/mailman/listinfo/python-list

Program prints questions for user input, but won't show the answer output

2016-05-18 Thread Jake Kobs
Here is the code: #Lab 9-4 Blood Drive #the main function def main(): endProgram = 'no' while endProgram == 'no': print # declare variables pints = [0] * 7 totalPints = 0 averagePints = 0 highPints = 0 lowPints = 0

Re: Average calculation Program *need help*

2016-05-13 Thread Jake Kobs
Thank you so much! I finally got it. :) -- https://mail.python.org/mailman/listinfo/python-list

Re: Average calculation Program *need help*

2016-05-12 Thread Jake Kobs
Thank you for the help..I think I'm getting closer, but I feel like after they enter an invalid number, it should reset the invalid number(s) somehow. Here's my updated code: -- #this function will get the total scores de

Re: Average calculation Program *need help*

2016-05-12 Thread Jake Kobs
On Thursday, May 12, 2016 at 11:57:28 PM UTC-5, Michael Torrie wrote: > On 05/12/2016 10:22 PM, Jake Kobs wrote: > > On Thursday, May 12, 2016 at 10:48:08 AM UTC-5, Jake Kobs wrote: > >> Hello all, I have been struggling with this code for 3 hours now and I'm > >&

Re: Average calculation Program *need help*

2016-05-12 Thread Jake Kobs
On Thursday, May 12, 2016 at 10:48:08 AM UTC-5, Jake Kobs wrote: > Hello all, I have been struggling with this code for 3 hours now and I'm > still stumped. My problem is that when I run the following code: >