seed随机数---startswith和endswith函数的使用

starstwithendswith

  • startswith() 函数判断文本是否以某个或几个字符字符开始,endswith() 函数判断文本是否以某个或几个字符字符结束。
text = "wid ee de de de ed efnrfr"
print text.startswith('wid')
print text.startswith('w')
print text.startswith('m')
print text.endswith('fr')
print text.endswith('efnrfr')
print text.endswith('k')
#--------------------------------输出
True
True
False
True
True
False

seed 随机数生成器,使得每次产生的随机数相同

# encoding:utf-8
import numpy as np
#seed中的值,可以设置成[0,2^(32-1)],如果要使得两次产生的随机数相同,必须设置相同的值
np.random.seed(2)
print np.random.rand(2,3)
np.random.seed(2)
print np.random.rand(2,3)
print np.random.rand(2,3)
##########################输出
[[ 0.4359949   0.02592623  0.54966248]
 [ 0.43532239  0.4203678   0.33033482]]
[[ 0.4359949   0.02592623  0.54966248]
 [ 0.43532239  0.4203678   0.33033482]]
[[ 0.20464863  0.61927097  0.29965467]
 [ 0.26682728  0.62113383  0.52914209]]
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值