Questions
def launch(item):
print("item launched: %s".format(item))
missile = 'warhead'
launch(missile)hole = None
if peg_type == 'round':
print('the type supplied is round')
hole = 'round'
elif peg_type == 'square':
print('the type supplied is square')
hole = 'square'Last updated