我正在使用SQLite和Python,但我想插入相关的随机字符串,例如,如果我想要某种歌曲类型,我想要的歌曲标题不是随机字母。我很感激任何帮助...
def genre():
genre=('''What genre do you want
1.
2.
3.
''')
choice=input(genre)
'''GENERATE RANDOM SONGS BASED ON GENRE INTO PLAYLIST DATABASE'''
def length():
length=input("How long do you want the playlist to last")
'''INSERT DATA INTO PLAYLIST WHICH ADDS TO USER LENGTH'''
答案 0 :(得分:0)
查询歌曲标题,在每个空格中分开单词,然后将这些单词推送到SQLlite中的播放列表数据库中,然后执行另一个for循环以便以随机顺序从数据库中检索这些单词。 伪代码
--query the song
--break string into separate words
--push each word into a list
--for loop that iterates over your list and sends each new word to your
database
--then a function that will retrieve those songs from your database
--then present them to the user.
我将首先学习基础知识并完成示例。 这些是您需要的步骤,许多单独的功能。 https://www.learnpython.org我的朋友 http://docs.python-requests.org/en/master/ 实际从网址获取信息。