这几天看着python,然后就记下一些自己觉得需要注意以下的基础语法吧! 如下: for i in range(0,100)表示从0到99,不包括后边界 单引号(')和双引号("")效果相同,但是要注意转义字符的使用“\” 除了使用转义字符之外,我们还可以使用三引号,例如下面的代码 ''' "What's your name?" I asked. "I'm Han Meimei." ''' 字符串的格式化 方法一: …
教程视频网盘共享:http://pan.baidu.com/s/1hrTrR5E 03-python基础.if判断 print 输出数据 print("hahahah")------>hahahah a = 100 print(a)----->直接打印a的值 a = 18 print("我的年龄是%d岁"%a)------>我的年龄是18岁 age = 18 high = 178 print("我的年龄是%d岁,我的身高是%dcm&quo…
这里有一个新的学习requests网站:http://docs.python-requests.org/zh_CN/latest/user/quickstart.html2017/11/30 Requests is the only Non-GMO HTTP library for Python, safe for human consumption. Note The use of Python 3 is highly preferred over Python 2. Consider upg…