SitePoint
  • Blog
  • Discord
  • Forum
  • Library
  • Login
Join Premium

Python General Programming

Close
  1. Middle of a String
  2. Multiples of 3 and 5
  3. Weight for Weight
  4. Valid Braces
Python General Programming

Coding Assessment

Python General Programming

Technical challenges that provide insight into your Python problem solving abilities.

Estimated Time: 1 hour

Challenges

  1. Middle of a String

    Write a function to find the character(s) in the middle of the provided string.

  2. Multiples of 3 and 5

    Return the sum of all the multiples of 3 and 5 below a given number.

  3. Weight for Weight

    Given a descending list of values, sum the digits of each value to create a new value and return the list of new values ordered from lowest to highest.

  4. Valid Braces

    Write a function that takes a string of braces, and determines if the order of the braces is valid.

What Are Coding Assessments?