博客是我工作的好帮手,遇到困难就来博客找资料
发布时间:2018-02-07 17:34:24
cat multiple_install_while.sh#!/bin/bash#echo "input the localnet:"localnet=`cat /etc/sysconfig/network-scripts/ifcfg-eth0|grep IPADDR|cut -d= -f2|cut -d. -f1-3`i=$1end=$2OLDPASSWD=123$%^@6echo "We will change all the passwd to a secret number."echo "please input the passwd:"read NEWPASSWD.........【阅读全文】
发布时间:2018-02-02 15:13:08
在使用dataframe时遇到datafram在列太多的情况下总是自动换行显示的情况,导致数据阅读困难,效果如下:# -*- coding: utf-8 -*-import numpy as npimport pandas as pddf = pd.DataFrame(np.random.randn(1, 20))print df 显示效果: 0 1 .........【阅读全文】
发布时间:2018-02-02 11:10:29
import numpy as npimport pandas as pdser = pd.Series(np.arange(3.))data=pd.DataFrame(np.arange(16).reshape(4,4),index=list('abcd'),columns=list('wxyz')) print ser0 0.01 1.02 2.0dtype: float64print data w x y  .........【阅读全文】
发布时间:2018-02-01 21:14:09
import numpy as npimport pandas as pdser = pd.Series(np.arange(3.))data=pd.DataFrame(np.arange(16).reshape(4,4),index=list('abcd'),columns=list('wxyz')) print ser0 0.01 1.02 2.0dtype: float64print data w x y  .........【阅读全文】
发布时间:2018-01-31 14:39:57
python中执行mysql遇到like 怎么办 ?sql = "SELECT * FROM T_ARTICLE WHERE title LIKE '%%%%%s%%%%'" % searchStr执行成功,print出SQL语句之后为:SELECT * FROM T_ARTICLE WHERE title LIKE '%%生活%%'原因:Python在执行sql语句的时候,同样也会有%格式化的问题,仍然需要使用%%来代替%。因此要保证在执行sql.........【阅读全文】