Re: [Tutor] Help please

2018-10-11 Thread Carlton Banks
https://www.w3schools.com/python/ref_func_input.asp tor. 11. okt. 2018 18.51 skrev Carlton Banks : > What are you trying to do? > > tor. 11. okt. 2018 18.33 skrev Holly Jo : > >> >> I have no clue what I’m doing wrong, I’m a new student >> >> food_1=input("Sushi") >> food_2=input("Quesdilla") >>

Re: [Tutor] Help please

2018-10-11 Thread Carlton Banks
What are you trying to do? tor. 11. okt. 2018 18.33 skrev Holly Jo : > > I have no clue what I’m doing wrong, I’m a new student > > food_1=input("Sushi") > food_2=input("Quesdilla") > new_food=food_1+food_2 > print("Combining these foods will you,",new_food) > input("Press enter to continue") > >

Re: [Tutor] Asynchronous http requests in Python

2018-10-11 Thread Alan Gauld via Tutor
On 10/10/18 23:17, Lulu wrote: > Hi everyone, > I am using python 2.7 and I wanted to ask the list the best way> to issue > multiple concurrent http requests from a Django application: This may be better addressed on the Django mailing list since Django may well have its own support for this. How

Re: [Tutor] Regarding python functions

2018-10-11 Thread Alan Gauld via Tutor
On 11/10/18 14:25, Siddharth V wrote: > I am not clear with the functions in python, which we can create while > programming in order to make our program efficient and neat... > Please brief me with those at the earliest... Its not clear exactly what kind of help you need so for now I will point

Re: [Tutor] Help please

2018-10-11 Thread Alan Gauld via Tutor
On 11/10/18 04:19, Holly Jo wrote: > > I have no clue what I’m doing wrong, I’m a new student > > food_1=input("Sushi") > food_2=input("Quesdilla") > new_food=food_1+food_2 > print("Combining these foods will you,",new_food) > input("Press enter to continue") Please always tell us what has gon

Re: [Tutor] Tutor Digest, Vol 176, Issue 13

2018-10-11 Thread Rajnish Sinha
Try for river in rivers: print ("The " + river + " is in the country of " + rivers[river]) On Wed, Oct 10, 2018 at 9:30 PM wrote: > Send Tutor mailing list submissions to > tutor@python.org > > To subscribe or unsubscribe via the World Wide Web, visit > https://mail.python.org/ma

[Tutor] Asynchronous http requests in Python

2018-10-11 Thread Lulu
Hi everyone, I am using python 2.7 and I wanted to ask the list the best way to issue multiple concurrent http requests from a Django application: Any input, suggestions are appreciated Thank you Sent from my iPhone ___ Tutor maillist - Tutor@python.

[Tutor] Regarding python functions

2018-10-11 Thread Siddharth V
Dear Sir/Ma'am, I'm a beginner who has started to learn this wonderful and easy software language through the help of my school... I am not clear with the functions in python, which we can create while programming in order to make our program efficient and neat... Please brief me with those at the

[Tutor] Help please

2018-10-11 Thread Holly Jo
I have no clue what I’m doing wrong, I’m a new student food_1=input("Sushi") food_2=input("Quesdilla") new_food=food_1+food_2 print("Combining these foods will you,",new_food) input("Press enter to continue") Sent from Mail for Windows 10 ___ Tutor

Re: [Tutor] Advanced python recommendations

2018-10-11 Thread Alan Gauld via Tutor
On 10/10/18 20:54, Mats Wichmann wrote: >>> This is actually the concept of test driven development (TDD), which I'm >>> not a huge proponent of personally, but kind of useful for this: >> >> I'm curious: What are the things you find less than satisfactory for TDD? > "TDD as religion" seems to m