Phase One: Figure out who wants to take part! Reply to register your interest.
Phase Two (Post #21): Get people set up with the relevant software. Make sure everyone is set up before going onto next phase.
Phase Three: Teach basic syntax of python using simple examples, while explaining each example
So your working on Phase Three I guess? And your forward to Four?
Edit: keep me informed of your progress! Also for others reading this, I am interested in seeing some people complete phase three, put in a reply to let me know you have started on it
Phase 3 complete although I don't really understand the classes.
Some times its hard to understand something until you see it in practice. I've learnt the basics of several languages and some concepts are a little hard to grasp until you've used them.
Don't worry too much about it for now, it'll become clear when you are using them
I found everything in phase 3 easy to understand, its just the classes went straight over my head. I will do some more reading over the next couple of days to see if I can get my head round it.
I still want to take part in this put am snowed under for next 3 weeks or so. I'll catchup when i can
I've done all three phases, I'm a bit stuck on the classes though. Getting an error message:
datacls = mycls("hello world")
TypeError: this constructor takes no arguments
Not sure what I've done! I kind of understand the theory of classes but they always confuse me when I start using them.
def __init__(self, data):
and are you using double underscores rather than just one?
Without it, your mycls object will just be using its standard constructor which is why it's breaking.
(the above is true for C# anyway )