代码学习——MLDF

   日期:2020-10-07     浏览:110    评论:0    
核心提示:文章目录sklearn.utils.shuffleastype强制转换数据类型format格式化函数sklearn.utils.shuffle打乱数据def shuffle_index(num_samples): a = range(0, num_samples) a = shuffle(a) length = int((num_samples + 1) / 2) train_index = a[:length] test_index = a[length

文章目录

  • sklearn.utils.shuffle
  • astype强制转换数据类型
  • format格式化函数

sklearn.utils.shuffle

  • 打乱数据
def shuffle_index(num_samples):
    a = range(0, num_samples)
    a = shuffle(a)
    length = int((num_samples + 1) / 2)
    train_index = a[:length]
    test_index = a[length:]
    return [train_index, test_index]

astype强制转换数据类型

format格式化函数

  • 语法:
    • str.format()
    • 用{}和:代替%
  • format函数不设置参数:
>>>"{} {}".format("hello", "world")    # 不设置指定位置,按默认顺序
'hello world'
 
>>> "{0} {1}".format("hello", "world")  # 设置指定位置
'hello world'
 
>>> "{1} {0} {1}".format("hello", "world")  # 设置指定位置
'world hello world'
  • 设置参数:
print("用户名:{name}, 学号 {number}".format(name="universe", number="1207"))
 
# 通过字典设置参数
site = { "name": "universe", "number": "1207"}
print("用户名:{name}, 学号 {number}".format(**site))
 
# 通过列表索引设置参数
my_list = ['universe', '1207']
print("用户名:{0[0]}, 学号 {0[1]}".format(my_list))  # "0" 是必须的
  • 输出都是:用户名:universe, 学号 1207
 
打赏
 本文转载自:网络 
所有权利归属于原作者,如文章来源标示错误或侵犯了您的权利请联系微信13520258486
更多>最近资讯中心
更多>最新资讯中心
0相关评论

推荐图文
推荐资讯中心
点击排行
最新信息
新手指南
采购商服务
供应商服务
交易安全
关注我们
手机网站:
新浪微博:
微信关注:

13520258486

周一至周五 9:00-18:00
(其他时间联系在线客服)

24小时在线客服