kkalog

Untitled

Jul 21st, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.13 KB | None | 0 0
  1. s = raw_input("give the string:")
  2.  
  3.  
  4. list1 = []
  5. for i in s:
  6.   if i.isalpha():
  7.     list1.append(i)
  8. print ''.join(list1)
Advertisement
Add Comment
Please, Sign In to add comment