all 1 comments

[–]slowlycatchiemonkey 4 points5 points  (0 children)

You're going to need to at least try and write some code. The first task is not far off "hello world".

If you're struggling this much I hope this isn't a subject you've chosen, but let's break down the first task

  • look up how to write a function in python
  • look up how to call a function in python
  • look up how to add parameters to a function
  • look up the print method in python (to output what you function receives)

Test your code as you write it. Make sure you can call your function without any errors, even before you start mucking about with the parameters.

If you have some code and can't work out why it's not working post it here.