开发者

Teaching Python to a Law Student [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance. Closed 10 years ago.

Im trying to teach python to a Law student (happens to be my fiancee).She has been insisting on me teaching her about it. One problem: She doesn't know anything about programming.

I was thinking on starting with dive into python, but i'm worried most not about the python part, but the "she does not know anything about programming" problem.

How can I keep her interested? I'm worried because she will have to learn if/else - oop - functions and stuff as she learns the python syntax开发者_开发百科, and she might get bored.

Maybe a project we can work together? Some simple django app?

Any ideas will be appreciated.

Related? :https://stackoverflow.com/questions/111857/what-did-you-use-to-teach-yourself-python


Nothing is better for learning to program than a real project (by real I mean of use for somebody besides the author), internet connection and an expert friend. As long as she is willing to learn.

Screencasts are a great way to learn new stuff fast and not-so-boring. Try http://showmedo.com for example


Scott Hanselman recently podcasted about a book called "Hello World : Computer Programming for Kids and Other Beginners".

It's written using Python and sounds like a good introduction to programming for beginners of all ages - I'm thinking about getting it for my nephew's birthday.

Might be worth a look?


Try this: http://homepage.mac.com/s_lott/books/nonprogrammer.html#book-nonprogrammer

Non-programmers are my target market.


The only way to learn is to automate some everyday tasks for her, for example fetching her online news or something, or something like a basic password manager.

The possibilities are endless ! :P


Tom, my experience has not been positive about it. My wife "wanted" to learn python but never went beyond a few chapters of "Dive into Python". I vaguely infer that she had a few doubts on the way, and never got interested in solving them. I have little doubt that an adult seldom does something new unless he/she needs to do it.

I do not want to discourage you but I'd leave it up to her (my wife) to decide whether to learn programming or not -- I would not try to teach her if she does not ask for that. My wife is quite interested in photography instead.

On the positive side, we might have new ways of learning programming invented only recently like Scratch, which probably have a better chance of conversions.


A more "fun" approach to try is to give examples of everyday things that your wife will understand. Say if you are teaching her about if/else control flow, then give examples like "if time is 8am, wake up to go to work, else continue sleeping". In pseudocode,

if time == 8am:
   do wake up
else:
   do continue sleeping.

Other examples, learning about functions. So you can tell her, that functions let her do things over and over. eg

def go_toilet():
    open door
    close door
    lift toilet seat
    do stuff
    flush
    wash hands
    exit door


I have heard good things about the book Learn to Program from the Pragmatic Programmers. It uses Ruby instead of Python, and is geared toward teaching basic programming concepts to complete beginners.

It seems to have examples and exercises geared toward stuff your average person can relate to.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜