Python+Web
文章平均质量分 79
无语僧314
我的QQ技术交流群:123534470,联系我说CSDN微博认识。
展开
-
Python 报错问题:Encountered "counter" at line 8, column 7. Was expecting one of:
源码:#!/usr/bin/python# -*- coding: UTF-8 -*- counter = 100 # 赋值整型变量miles = 1000.0 # 浮点型name = "John" # 字符串 print counterprint milesprint nameeclipse报错如下:Encountered "counter" at line 8, column 7. Was e...原创 2018-05-02 10:31:35 · 10856 阅读 · 0 评论 -
腾讯云服务器Ubuntu16.04完美搭建FTP服务,解决Time Out问题
# Example config file /etc/vsftpd.conf## The default compiled in settings are fairly paranoid. This sample file# loosens things up a bit, to make the ftp daemon more usable.# Please see vsftpd.co...原创 2019-01-29 17:12:57 · 1635 阅读 · 0 评论 -
curl和wget的区别和使用
curl和wget基础功能有诸多重叠,如下载等。非要说区别的话,curl由于可自定义各种请求参数所以在模拟web请求方面更擅长;wget由于支持ftp和Recursive所以在下载文件方面更擅长。类比的话curl是浏览器,而wget是迅雷9。wget是个专职的下载利器,简单,专一,极致;而curl可以下载,但是长项不在于下载,而在于模拟提交web数据,POST/GET请求,调试网页,等等。...转载 2019-01-30 09:06:26 · 3229 阅读 · 1 评论