Re: [Tutor] I cant fix this bug

2012-12-18 Thread bob gailer
On 12/18/2012 8:05 PM, Gina wrote: print(menu_quad()) menu_quad() calls that function which prints the quadrilateral menu. The function has no return statement, so by default it returns None. The above print then prints None. Change menu_quad() to return rather than print the menu. BTW you r

Re: [Tutor] I cant fix this bug

2012-12-18 Thread Mitya Sirenef
On 12/18/2012 08:05 PM, Gina wrote: I have Python version 3. when the program begins, it prints out the main menu and then asks you for your choice - just like it is supposed to you enter your choice, and the next menu pops up, and below the menu it says "None" on the line before your next choi

Re: [Tutor] I cant fix this bug

2012-12-18 Thread Oscar Benjamin
On 19 December 2012 01:05, Gina wrote: > I have Python version 3. > when the program begins, it prints out the main menu and then asks you for > your choice - just like it is supposed to > you enter your choice, and the next menu pops up, and below the menu it says > "None" on the line before your

[Tutor] I cant fix this bug

2012-12-18 Thread Gina
I have Python version 3. when the program begins, it prints out the main menu and then asks you for your choice - just like it is supposed to you enter your choice, and the next menu pops up, and below the menu it says "None" on the line before your next choice is asked for i dont know why it d