We are pleased to announce the release of Python 2.5.4 (final), a bugfix release of Python 2.5, on December 23rd, 2008. This is the last bugfix release of Python 2.5. Python 2.5 is now in bugfix-only mode; no new features are being added. According
python-3.6.4官方文档 适合追求最正规的python学习文档,This article explains the new features in Python 3.6, compared to 3.5. Python 3.6 was released on December 23, 2016. For full details, see the changelog.
Brainteasers in Python 3.5.pdfEx 1: To find if given strings are anagrams of each other
>>>def isAnagram(a, b)
L1=[]
L2=[]
for chi in a
1. append(ch1)
for ch2 in b:
L2 append(ch2
L3=Sorted(L1)
L4=sorted(L2)
if L3==L4
pint(Yes! Anagrams”)
els