#coding=utf-8
#!/usr/bin/python
import logging;

a = 'abc';
print 'Y' if isinstance(a, str) else 'N';

 

相关文章: