Posts by Yana Santos • 46 points
4 posts
-
0
votes2
answers50
viewsA: Copy Files using shutil library
Hello, friend. So, there’s a little fancy way to do this data transfer + directory change + file name change. I don’t know if you’ll sympathize, but I’ll put the code here. Setting the date There is…
pythonanswered Yana Santos 46 -
1
votes1
answer72
viewsA: How to add values from within a Python list?
Hello, friend. Well, the error is happening, more specifically because of line 17 of your code: for nota in notas[0]: You have set the calculation only for the first element of the notes list,…
pythonanswered Yana Santos 46 -
1
votes4
answers84
viewsA: Error when using index to pick up a specific index
Well, I tried running your code, but some error messages appeared. The "num" list is not defined, as well as other variables such as "major". I also believe that it might not be a good idea to add…
pythonanswered Yana Santos 46 -
1
votes1
answer28
viewsA: Using . get() in your window with Tkinter
Well, from what I understand, you want to print the written answer on Tkinter’s window. I couldn’t understand if you want to print on the terminal or the window itself. I’ll do a demonstration for…