Posts by Lucas Ramos • 111 points
3 posts
-
2
votes1
answer157
viewsA: Running functions simultaneously in Python3
I did, all you have to do is create a new thread: import threading import time def thread_function(name): print("Thread {}: Comecando".format(name)) time.sleep(3) print("Thread {}:…
-
3
votes1
answer166
viewsA: Recover Json Data with Javascript
Good night ! First I would like to comment that the next times I ask a question here it would be interesting to show the code that is running and the errors generated during execution because it…
-
3
votes1
answer72
viewsA: Get specific result by comparing array’s through Javascript’s for
You could do something like this: var allcods = "e5f6abb0c4b74c20a92195375bef2434|c7aead0f41f90cf4eace601998bd78c4"; var cods = allcods.split('|'); var alldias =…
javascriptanswered Lucas Ramos 111