标签: python
#!/usr/bin/python # -*- coding: utf-8 -*- a = '中文' b = raw_input() if a == b: print 'ok' else: print 'no' #After execute,input‘中文’,but print 'no'.