Posts by Jubiluleu • 27 points
2 posts
-
-1
votes1
answer186
viewsQ: How to get the file name to be opened with my program by clicking on this file?
I created a music player in the Python language and I would like to know how to play a song with my program by clicking on the file. For example when I open a song now, it automatically plays on…
-
-2
votes1
answer255
viewsQ: How do I navigate through a Python list for each function call?
I have this code as an example: # 0 1 2 3 4 lista = ['1','2','3','4','5'] def nexxt(): for item in range(len(lista)): item += 1 print(lista[item]) def back(): for item in range(len(lista)): item -=…