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
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