Forum

quick question

Threads Archive

GamerKid

#1 ·

so, where can i learn python for beginners? and is it free, and also how can i install win32gui or whatever to start using pyaudiogame.
Until I figgure out what to put here for real, this is what you will see.

bloodstorm

#2 ·

There was a big list with resources where you can learn programming on audiogames forum in developers room. Sticky: List of resources for programmers, developers, and more. Try to look there. I think that you can find free books, as well as paid ones.
let's rock!

thespyde

#3 ·

Nathan Tech has a free course. I don't know how useful it is as I didn't learn very much going through it.
Strange, Troubled Times...

Monkey999

#4 ·

I found it not very useful. If I remember correctly, he was just talking about basic concepts but there was no exersyse or whatever.
And that, is why you shouldn't do this.

ArcticMoon

#5 ·

The most unuseful course is when people do it in audio. I mean the explanations are fine, but this kind of teaching is so much one sided that after a while you'll just become bored, even if the subject interests you.

"As I watch this generation try to rewrite history, one thing I'm sure of is that it will be misspelled and have no punctuation."

nikolai

#6 ·

There is also 3Schools. They've got very streight forward tutorials of the key elements that you will be dealing with most of the time.

Also, python has been very mainstream for a while now, which means google is your friend in most circumstances where you are trying to figure out something.
https://www.w3schools.com/python/

thespyde

#7 ·

What I noticed was that he loaded a bunch of modules and made calls to them in various ways. I guess that's Python is about, modules. Just my none-too-knoledgeable conclusion.
Strange, Troubled Times...

GamerKid

#8 ·

how do you install the win32gui though?
Until I figgure out what to put here for real, this is what you will see.

GamerKid

#10 ·

yes
Until I figgure out what to put here for real, this is what you will see.

GamerKid

#12 ·

ModuleNotFoundError: No module named 'win32gui'
Until I figgure out what to put here for real, this is what you will see.

bloodstorm

#13 ·

1 polubień
Write to cmd "pip install win32gui" and try to execute your code
let's rock!

bloodstorm

#14 ·

Sorry for double posting. But to prevent questions, write the command without quotes.
let's rock!

GamerKid

#16 ·

it says pip isn't a valid command even though i havge it installed.
Until I figgure out what to put here for real, this is what you will see.

hermis501

#19 ·

First of all, man, find the tutorials for beginners and learn from those: if/else statements, loops, varebles, then oop, like that you will get understanding from the beginning, and only then try to install those libraries, cause installing them is really easier process than using them in an actual code. Just my suggestion. HTH