# -*- coding: utf-8 -*-
"""python_datatypes.ipynb

Automatically generated by Colaboratory.

Original file is located at
    https://colab.research.google.com/drive/18rROspDfq0lzLlaxHP9imwL865g4MRN2
"""

10%5

10//3

3/2

5.0

1 =< 3

3 + 2 * 2

"Tom's burger"

'Tom\'s burger'

'Tom's burger'

name = 'Tom'
f"Hello {name}"

x = [1, x]