-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfunctions.py
More file actions
31 lines (24 loc) · 774 Bytes
/
functions.py
File metadata and controls
31 lines (24 loc) · 774 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import pandas as pd
import random
artistData = r"/Users/sanjith/Personal/Development/VSCodeProjects/RandomSongIdeaGenerator/SongGenData.xlsx"
artists = pd.read_excel(artistData)
def Anirudh():
x = random.randint(0, 26)
artistChoice = artists.AnirudhMovies[x]
return artistChoice
def ARR():
x = random.randint(0,28)
artistChoice = artists.ARRMovies[x]
return artistChoice
def Yuvan():
x = random.randint(0,28)
artistChoice = artists.YuvanMovies[x]
return artistChoice
def Metro():
x = random.randint(0,9)
artistChoice = artists.MetroAlbums[x]
return artistChoice
def Kendrick():
x = random.randint(0,9)
artistChoice = artists.KendrickAlbums[x]
return artistChoice