Skip to content

Instantly share code, notes, and snippets.

@pasali
Created April 7, 2011 21:44
Show Gist options
  • Save pasali/908811 to your computer and use it in GitHub Desktop.
Save pasali/908811 to your computer and use it in GitHub Desktop.
while True:
cumle = raw_input("cümle gir :")
kelimeler = cumle.split()
liste = []
for i in kelimeler:
liste.append(len(i))
uzun = min(liste)
sirasi = liste.index(uzun)
print kelimeler[sirasi]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment