Re: [Tutor] ISSUE WITH PYTHON 3,5 API RUNTIME

2017-02-12 Thread Alan Gauld via Tutor
On 12/02/17 19:10, ViRuZ Fx . wrote: > Hello fellow programmers of Python, Im here writing you this because, since > I got a virus and my computer reseted to 0, I have no idea what reset to 0 means. Did you reinsatall Windows and all your applications? Did you use the Windows repair tool? > I ca

[Tutor] ISSUE WITH PYTHON 3,5 API RUNTIME

2017-02-12 Thread ViRuZ Fx .
Hello fellow programmers of Python, Im here writing you this because, since I got a virus and my computer reseted to 0, I cant run anything, when I start running a program , it pops this error : api-ms-win-crt-runtime-l1-1-0.dll I seriously need help , so yep, thanks for responding me the fast as p

Re: [Tutor] Issue with Python

2014-11-13 Thread Steven D'Aprano
On Fri, Nov 14, 2014 at 10:07:08AM +1100, Daniel Williams wrote: > Hi, I'm dw0391 > I have an issue with a class task that my teacher can't seem to fix. Oooh, that's sad that your teacher can't fix this. Jumping ahead to the relevant part of the code, I can see two errors with the same line of c

Re: [Tutor] Issue with Python

2014-11-13 Thread Alan Gauld
On 13/11/14 23:07, Daniel Williams wrote: Hi, I'm dw0391 I have an issue with a class task that my teacher can't seem to fix. Please explain what the issue is, don;t make us guess. And don't expect us to run code that you acknowledge is buggy! We were asked to write the code for a 'no interes

[Tutor] Issue with Python

2014-11-13 Thread Daniel Williams
Hi, I'm dw0391 I have an issue with a class task that my teacher can't seem to fix. We were asked to write the code for a 'no interest loan repayment calculator'. I tried, but it did not work. Attached is the relevant file, 'Prog 6' Could you please tell me what I am doing wrong? Thanks. # No Inter

[Tutor] Issue with Python 2.7.2 - beginner needing help

2012-01-10 Thread Mike G
Hi Tonyelle Your code doesn't work as expected due to your 2nd edition book uses Python 3x, see page xi, 'Changes in this edition'. This would work for your version of Python... room = 503 print 'I am staying in room number', room If you're new, Python 2.7.2 is (IMO) a better choice, many more

[Tutor] Issue with Python 2.7.2 - beginner needing help

2012-01-10 Thread tonyelle
Hello! I am just beginning to learn Python from the book Starting Out With Python - 2nd Edition.  I have read and completed exercises up to page 45. I am currently learning how to display multiple items with one call to the print function.        ex: 1 # This program demonstrates a variable.