为什么输入中文单词不要在python中判断?

时间:2016-07-02 02:50:05

标签: 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'.

0 个答案:

没有答案