On 23/12/14 02:58, Alex Kleider wrote:
On Dec 22, 2014 12:36 PM, wolfrage8...@gmail.com wrote:
On Mon, Dec 22, 2014 at 6:27 AM, Vishwas Pathak <
vishwas_pat...@persistent.com> wrote:
Your Disclaimer alone means that I can not respond to this question, or
else it would apparently become the pro
This thread is hilarious. Thanks for the chuckle.
http://www.ignyte.ms/whitepapers/LayersOf%20HumanValuesInStrategy.pdf
http://www.principiadiscordia.com/downloads/04%20Prometheus%20Rising.pdf
On Mon, 22 Dec 2014 11:27:01 +
Vishwas Pathak wrote:
> I am working building on developing an au
Hello all,
I'm working my way through the Michael Dawson book "Python Programming for the
Absolute Beginner" and I've come across an invalid syntax error on 2 occassoins
now. For the life of me I can't see what's wrong. I've checked and re-checked
I've typed in the code from the book correctly,
On Tue, 23 Dec 2014 18:27:10 +
stuart kurutac wrote:
> finish = (int(input("Finish: "))
The parenthesis aren't balanced. I would have written it as:
finish = int(input("Finish: "))
but something like this should also work:
finish = (int(input("Finish: ")))
___
On 23/12/14 18:27, stuart kurutac wrote:
Hello all,
I've come across an invalid syntax error on 2 occassoins now.
> For the life of me I can't see what's wrong.
finish = (int(input("Finish: "))
print("word[", start, ":", finish, "] is", end=" ")
When I run this through