Boston Python Workshop 6/Friday/CodingBat Using Codingbat: Difference between revisions

imported>Jesstess
No edit summary
imported>Adamf
 
Line 11:
We like CodingBat because it gives you immediate feedback on how close your function is to being correct.
 
Let's walk through an example:, the [http://codingbat.com/prob/p216579 the sumTwoNumbers] exercise.
 
If you visit that exercise web page, this is what you'll see:
Line 23:
This screen:
# describes the problem (write a function to add any two numbers together)
# shows you some of the inputs that CodingBat will use to test the function you've written, and the outputs that CodingBat expects to see returned from your function for each input.
 
The inputs are the values in the parentheses, and the expected output is the value pointed to by the arrows:
Line 31:
 
 
If you simply click "Go" without typing anything in the box, CodingbBatCodingBat gives you an error on the right hand side of the screen:
 
 
Anonymous user