标签: python valueerror
如何在以下代码中执行print' done'语句:
i = 's' try: int(i) print 'done' except ValueError: print 's is not an integer'
我的输出是's不是整数'