[스크랩] 날아가는 알파벳 (1) 본문

[PL]/Python

[스크랩] 날아가는 알파벳 (1)

객과 함께. 2007. 6. 26. 01:21

#!/usr/bin/python

 

ALPHA= 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'

 

ch= raw_input('Input Alpha : ');

 

if ch.isalpha():
     idx= ALPHA.index(ch.upper())
     print ALPHA[idx:]+ALPHA[:(idx+1)]
else:
     print """It's not alpha"""

 

까페 빙하님의 소스 입니다.

출처 : 프로그래머의 길

'[PL] > Python' 카테고리의 다른 글

값대입  (0) 2007.08.19
Hello, World  (0) 2007.08.19
리스트 예제 프로그램  (0) 2007.08.18
3x+1 문제  (0) 2007.06.26
날아가는 알파벳 (2)  (0) 2007.06.26