Skip to content

Instantly share code, notes, and snippets.

@pasali
Created April 6, 2011 19:30
Show Gist options
  • Save pasali/906350 to your computer and use it in GitHub Desktop.
Save pasali/906350 to your computer and use it in GitHub Desktop.
#!/usr/bin/env python
#-*-coding:utf-8-*-
cumle = "Deneme mehmet abdulrezzak abuziddintelkadayıf "
kelimeler = cumle.split()
liste = []
for i in kelimeler:
liste.append(len(i))
uzun = max(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