Module:Sandbox/InvalidData/AichanRepeat:修订间差异
InvalidData(讨论 | 贡献) (计算推荐的重复次数(?) |
InvalidData(讨论 | 贡献) 小 (python导致的) |
||
第16行: | 第16行: | ||
for i = 1,#prefList,1 do | for i = 1,#prefList,1 do | ||
local tempPref1 = prefList[i]['prefer'] | local tempPref1 = prefList[i]['prefer'] | ||
for j | for j = 1,#tempPref1,1 do | ||
local tempPref2 = tempPref1[j] | local tempPref2 = tempPref1[j] | ||
for k | for k = 1,#tempPref2,1 do | ||
local curSong = tempPref2[k] | local curSong = tempPref2[k] | ||
if allList[curSong] then -- when repeat | if allList[curSong] then -- when repeat |
2024年9月22日 (日) 20:30的版本
可在Module:Sandbox/InvalidData/AichanRepeat/doc创建此模块的帮助文档
local srcFileName = 'InvalidData/preferdata.json'
local p = {}
local function getList()
return mw.text.jsonDecode(mw.title.new(srcFileName,'User'):getContent())['aichan']
end
function p.main()
local prefList = getList()
local allList = {}
local repList = {}
local repTimes = 0
local repSongs = 0
local songNumber = 0
for i = 1,#prefList,1 do
local tempPref1 = prefList[i]['prefer']
for j = 1,#tempPref1,1 do
local tempPref2 = tempPref1[j]
for k = 1,#tempPref2,1 do
local curSong = tempPref2[k]
if allList[curSong] then -- when repeat
repTimes = repTimes + 1
if repList[curSong] then -- when not first repeat
repList[curSong] = repList[curSong] + 1
else -- when first repeat
repList[curSong] = 1
repSongs = repSongs + 1
end
else -- when not repeat
songNumber = songNumber + 1
allList[songNumber] = curSong
end
end
end
end
local wikiText = "* 出现了'''" .. repTimes .. "'''次/'''" .. repSongs .. "'''首重复曲目"
return wikiText
end
return p