Google Python Course,是目前我见过最好的Python课程。 课程的安排没有面面俱到,但会让你很快明白Python的不同,以及最应该掌握的东西。 做完课后练习,如果你仔细看看Test的部分,能够发现google测试框架gtest的影子。 google Python course 地址:http://https://developers.google.com/edu/python/
与java不同的是,字符串连接中的'+'不能自动将其他类型转换为字符类型。我们需要显式的通过str()函数进行转换。 >>> pi = 3.14 >>> str1 = 'PI is ' >>> print str1 + pi Traceback (most recent call last): File "", line 1, in TypeError: cannot concatenate 'str' and 'float' objects >>> print str1+str(pi) PI is 3.14 >>>