Posts by Lucas Matheus • 1 point
2 posts
-
0
votes1
answer162
viewsA: Python Film Box Office display occupied seating position
def IngressosCinemas(posicao,assentos): for p,j in enumerate(assentos): for o,k in enumerate(j): if(posicao==k): matriz[p][o] = "XX" The position variable is the seats chosen, and the variable seats…
pythonanswered Lucas Matheus 1 -
0
votes2
answers444
viewsA: Virtual Assistant
In Python we have an amazing framework to build native applications that can be packaged for these various platforms! So if you want to develop for Android, iOS, Windows, Linux or Mac OS using our…