码迷,mamicode.com
首页 > Web开发 > 详细

测试从Notepad++导出HTML格式的code

时间:2019-12-11 09:50:55      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:css   color   and   space   fun   style   notepad   head   oat   

以下为从Notepad++中将code导出(export)为html格式文件的测试案例,如显示符合预期,则表明markdown支持完整HTML语法!

import dmlib as dm import numpy as np def group_func(x): return x % 8 def task_func(x): return x % 3 + 1 def test_dm_map_reduce(): mr = dm.MapReduce() # generate test input input_dim = (1024, 16) x = np.random.rand(input_dim[0], input_dim[1]) num_group_keys = 8 mr.map(x, group_func, num_group_keys) y = mr.reduce(task_func) print(y) if __name__ == ‘__main__‘: test_dm_map_reduce()

测试从Notepad++导出HTML格式的code

标签:css   color   and   space   fun   style   notepad   head   oat   

原文地址:https://www.cnblogs.com/thisisajoke/p/12020529.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!