#!usr/bin/env <a href="http://www.pxcodes.com/Python/" target="_blank" class="infotextkey">python</a># encoding:utf-8def strReverse(strDemo): return strDemo[::-1]print(strReverse('qbitschool.cn'))