()
| 38 | |
| 39 | |
| 40 | def randomcolor(): |
| 41 | colorArr = ['1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F'] |
| 42 | color = "" |
| 43 | for i in range(6): |
| 44 | color += colorArr[random.randint(0, 14)] |
| 45 | return "#" + color |
| 46 | |
| 47 | |
| 48 | def add_mark(imagePath, mark, args): |