In [2]:
for x in range(0,3):
    print("We’re on time {}".format(x))


We’re on time 0
We’re on time 1
We’re on time 2

In [4]:
x = 1
while x < 10:
    print("Now on {}".format(x))
    x += 1


Now on 1
Now on 2
Now on 3
Now on 4
Now on 5
Now on 6
Now on 7
Now on 8
Now on 9

In [7]:
turkey = "tasty"

if turkey == "tasty":
    print("Turkey is tasty")
else:
    print("Turkey is not tasty")


Turkey is tasty

In [8]:
def my_function(a,b):
  print(a,b)

my_function(1,2)


(1, 2)

In [ ]:
import pandas as pd

import string

from fuzzywuzzy import fuzz