Skip to content

Instantly share code, notes, and snippets.

@macloo
Created February 10, 2014 03:07
Show Gist options
  • Select an option

  • Save macloo/8909699 to your computer and use it in GitHub Desktop.

Select an option

Save macloo/8909699 to your computer and use it in GitHub Desktop.
Test for Alex
stuff = "Alex Randy Mandy"
other = "Jack Fletcher Isaac Bobby Susie Joey Manny Moe Jack"
apples = stuff.split(' ')
salad = other.split(' ')
basket = len(apples)
print basket
while len(apples) != 6:
green = salad.pop()
apples.append(green)
print apples
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment