Re: [Tutor] Python 3.5.2 Installaton Question

2016-10-21 Thread bharath ks via Tutor
Hello, You could you have multiple version of python on your system. It's not necessary to uninstall the older version. you can look at this link for more infoHow to run different python versions in cmd | | | | || | | | | | How to run different python versions in cm

Re: [Tutor] Dictionary Question

2016-05-03 Thread bharath ks via Tutor
Hello, Using iteritems would be much easier approach Something like this mydic = {"A": "Apple", "B": "Banana"} for key, value in mydic.iteritems():    if value == "Apple":        print key  Thanks & BR, Bharath Shetty On Tuesday, 3 May 2016 2:57 AM, Jason N. via Tutor wrote: Tha