H1: Introduction

REPL is a good way to learn
Python for beginners.

%%Code: python%%
>>> 3 + 7
10
>>> 22 / 7
3.142857142857143
>>> 22 // 7
3
%%end%%

H2: String methods

Python comes loaded with
awesome methods.
Enjoy learning Python.

%%Code: python%%
>>> 'python'.capitalize()
'Python'

>>> ' comma  '.strip()
'comma'
%%end%%

