anaconda mysqldb install admin October 22, 2018 Python 0 Comments Just run following command conda install -c anaconda mysql-python Related Posts How to check python version ? admin April 9, 2017 python -V .. Some sorting example in paython. zendnwar March 6, 2014 >>> sorted(5, 2, 3, 1, 4,8,9,7) output : 1, 2, 3, 4, 5, 7, 8, 9 list.sort() method : & ..