Practice Arena

Python Coding Challenges

Write real Python in the browser. Instant feedback. From beginner to expert.

925 challenges 556 easy 323 medium 46 hard
Numpy & Vectorized Computing hard

Inclusive numeric range vector

Return [start, start+step, ...] through end inclusive.

vectors arrays numpy-style
+35 pts 30m
Numpy & Vectorized Computing hard

Count elements in matrix

Return total scalar count.

vectors arrays numpy-style
+35 pts 30m
Numpy & Vectorized Computing hard

Binarize vector at threshold

Return 1.0 where v[i] >= t else 0.0.

vectors arrays numpy-style
+35 pts 30m
Cryptography & Hashing easy

SHA256 Hash String

Write a function that returns the SHA256 hexadecimal digest of a given string.

hashing sha256 hashlib
+5 pts 5m
Cryptography & Hashing easy

Compute SHA-1 Hash String

Write a function that returns the SHA-1 hash of a string as a 40-character hex string.

sha1 hashlib hashing
+10 pts 15m
Cryptography & Hashing easy

Constant Time Compare

Write a function that compares two strings without leaking length or content via timing.

constant-time security comparison
+10 pts 15m
Cryptography & Hashing easy

Verify HMAC signature

Implement a function that verifies an HMAC-SHA256 signature for a message and key.

hmac hashlib security
+10 pts 15m
Cryptography & Hashing easy

Password Salt Hash

Implement a function that returns a secure salted SHA-256 password hash with a deterministic format.

hashlib sha256 security
+8 pts 12m
Cryptography & Hashing easy

SHA1 Hash String

Implement a function that returns the SHA1 hexadecimal digest of an input string.

sha1 hashlib hashing
+10 pts 15m
Cryptography & Hashing easy

XOR Cipher Encode

Implement the XOR cipher: encode a string by XORing each character with a key character.

xor encryption strings
+10 pts 10m
Cryptography & Hashing easy

Constant time compare

Write a function that compares two strings in constant time to avoid timing attacks.

timing-safe security strings
+8 pts 10m
Cryptography & Hashing easy

Compute SHA256 Hash String

Implement a function that returns the SHA-256 hex digest of a given input string.

sha256 hashing hashlib
+8 pts 10m
Cryptography & Hashing easy

Verify HMAC signature

Implement a function that verifies an HMAC-SHA256 signature for a given message and secret key.

hmac sha256 security
+10 pts 15m

Showing 913–925 of 925 challenges

Guide: free Python coding challenges

Practice Python by solving problems

PythonSkillset challenges are hands-on coding exercises from beginner to advanced. Open a challenge, read the problem, write Python in the split-pane editor, and run tests with Pyodide — no install required.

How to use the arena

  1. Pick a category — basics, algorithms, strings, and more
  2. Open a challenge, read the statement, and edit the starter code
  3. Run tests, fix failures, then try a related quiz or tutorial lesson

Challenges vs tutorials and quizzes

Challenges test what you can build under constraints. For guided teaching, use our Python tutorials. For quick checks, try quizzes or copy snippets from code samples.