In [2]:
for x in range(0,3):
print("We’re on time {}".format(x))
In [4]:
x = 1
while x < 10:
print("Now on {}".format(x))
x += 1
In [7]:
turkey = "tasty"
if turkey == "tasty":
print("Turkey is tasty")
else:
print("Turkey is not tasty")
In [8]:
def my_function(a,b):
print(a,b)
my_function(1,2)
In [ ]:
import pandas as pd
import string
from fuzzywuzzy import fuzz