Re: Python troubles

2019-10-31 Thread AudioGames . net Forum — Developers room : vablus via Audiogames-reflector
Re: Python troubles I used visual studio for a while.  Took up way too much memory,  I  already have Python installed  fully.  Python  3.8. URL: https://forum.audiogames.net/post/471457/#p471457 -- Audiogames-reflector mailing list Audiogames-reflector@sabahattin-gucukoglu.com https

Re: Python troubles

2019-10-28 Thread AudioGames . net Forum — Developers room : Ethin via Audiogames-reflector
Re: Python troubles Never seen that one. Also, most editors have a smart indentation featue, i.e.: you indent once and they keep indenting each line until you force it to unindent or you deepen the indent. URL: https://forum.audiogames.net/post/471010/#p471010 -- Audiogames-reflector

Re: Python troubles

2019-10-28 Thread AudioGames . net Forum — Developers room : Ty via Audiogames-reflector
Re: Python troubles @8, another common one that i've seen in learning python guides is 5 spaces URL: https://forum.audiogames.net/post/470997/#p470997 -- Audiogames-reflector mailing list Audiogames-reflector@sabahattin-gucukoglu.com https://sabahattin-gucukoglu.com/cgi-bin/mailman

Re: Python troubles

2019-10-28 Thread AudioGames . net Forum — Developers room : cartertemm via Audiogames-reflector
Re: Python troubles Most people don't actually press space four times following each and every statement.Instead, almost all decent editors have a toggle to insert tabs as spaces as well as configurable tab width.You can theoretically use any number of spaces/tabs, but convention

Re: Python troubles

2019-10-28 Thread AudioGames . net Forum — Developers room : Lucas1853 via Audiogames-reflector
Re: Python troubles @6 not in all cases. Common indenting conventions are 1 tab, 1 space, 2 spaces or 4 spaces with 4 spaces being the most common. It depends on the project you are working in. URL: https://forum.audiogames.net/post/470954/#p470954 -- Audiogames-reflector mailing

Re: Python troubles

2019-10-27 Thread AudioGames . net Forum — Developers room : leibylucw via Audiogames-reflector
Re: Python troubles Hot Tip: Use the tab key to indent, not the space bar! Part of programming is adhering to code conventions, and this is one that a lot of people mess up. URL: https://forum.audiogames.net/post/470919/#p470919 -- Audiogames-reflector mailing list Audiogames

Re: Python troubles

2019-10-27 Thread AudioGames . net Forum — Developers room : amerikranian via Audiogames-reflector
Re: Python troubles Hi!I would strongly recommend you check out my python guides found here. While the grammar is not at it's finest, I do get the main points across. URL: https://forum.audiogames.net/post/470814/#p470814 -- Audiogames-reflector mailing list Audiogames-reflector

Re: Python troubles

2019-10-26 Thread AudioGames . net Forum — Developers room : ironcross32 via Audiogames-reflector
Re: Python troubles OK, this is real simple, and I think you're not getting it because you're overthinking it. whenever a line of python code ends in a colon, that next line needs to be indented. In truth, Python does not care how much you indent. What it does care about is that you do

Re: Python troubles

2019-10-26 Thread AudioGames . net Forum — Developers room : Ty via Audiogames-reflector
Re: Python troubles Run cmd as admin, so, windows x, a, then pip install pygame. In regards to indenting, are you having trouble knowing when to indent or what?Any time there's a colon at the end of a line, you indent the lines below it, until that function or loop is done. You can do

Re: Python troubles

2019-10-26 Thread AudioGames . net Forum — Developers room : Liam via Audiogames-reflector
Re: Python troubles If using NVDA, enable the indentation beeps.make sure when installing pygame you are running your command prompt in adminstrative mode. URL: https://forum.audiogames.net/post/470715/#p470715 -- Audiogames-reflector mailing list Audiogames-reflector@sabahattin

Python troubles

2019-10-26 Thread AudioGames . net Forum — Developers room : vablus via Audiogames-reflector
Python troubles Dear  audiogame devs, So, I've been trying to learn. I've done hours of research concerning Python and  all it has. Unfortunately, there are some problems  with Python that I'm having that I can't seem to solve. All I'm trying to accomplish is a basic  Windows application