About 50 results
Open links in new tab
  1. CodingBat Python

    CodingBat Python offers free live coding problems to practice and enhance Python programming skills with problem descriptions and sample outputs.

  2. CodingBat Python Warmup-1

    Java Python Warmup-1 chance Simple warmup problems to get started, no loops (solutions available)

  3. Python Example Code - CodingBat

    Forgetting the colon ":" that follows the test is a very common mistake when first learning Python. Another technique is to return True with one more tests in the body of the function, leaving a return …

  4. CodingBat Python String-1

    Basic python string problems -- no loops. Use + to combine strings, len (str) is the number of chars in a String, str [i:j] extracts the substring starting at index i and running up to but not including index j.

  5. CodingBat Python List-1

    Java Python List-1 chance Basic python list problems -- no loops.. Use a [0], a [1], ... to access elements in a list, len (a) is the length.

  6. CodingBat Python Warmup-2

    Java Python Warmup-2 chance Medium warmup string/list problems with loops (solutions available)

  7. CodingBat Python Logic-2

    Logic-2 chance Medium boolean logic puzzles -- if else and or not

  8. CodingBat Java

    Java Help Java Example Solution Code Java String Introduction (video) Java Substring v2 (video) Java String Equals and Loops Java String indexOf and Parsing Java If and Boolean Logic If Boolean …

  9. Python Lists - CodingBat

    This is an introduction to Python lists, as used in the CodingBat Python practice problems, specifically in the List-1 and List-2 sections. A Python list can hold any number of things in a linear collection …

  10. Python Strings - CodingBat

    This is an introduction to Python strings, as used in the CodingBat Python practice problems, specifically in the String-1 and String-2 sections. Python String Basics