Posts by Shoo Limberger • 224 points
8 posts
-
3
votes1
answer153
viewsA: Program to pick up on a web page events
Hello... The implementation to handle the page may be roughly the following (following what was suggested by @lazyFox). No for you will have to do the treatments because on the page the calendar is…
-
1
votes2
answers2109
viewsA: Update with the SET of another table
Try this way is an update with select correlated ( Correlated select )... something like that: UPDATE PCPSEQPROC_001 PCPSEQPROC SET PCPSEQPROC.ID_PCPSEQPROC = (select PCPSEQ.ID_PCPSEQ from…
-
0
votes4
answers11856
viewsA: Higher and lower value problem with while. (No list!)
This implementation resolves: n = int(input("Digite N: ")) ma = None me = None for i in range(n): x = float(input("Digite um número: ")) ma = ma if ma != None and ma > x else x me = me if me !=…
-
1
votes1
answer471
viewsA: Algorithm Graphs to solve Sudoku
It’s because in the second case, the information in the file is insufficient for resolution... By fixing a further number the solution becomes possible (I added the 3 in the second position of the…
-
1
votes1
answer352
viewsA: HTML Image Base64 in emails
Send Multipart email as follows (python3): from email.mime.image import MIMEImage from email.mime.multipart import MIMEMultipart from email.mime.text import MIMEText def enviaEmail(strFrom, strTo,…
-
0
votes1
answer1846
viewsA: What is the function of "use_aliases=True" in emoji.emojize?
The use_aliases parämetro, according to the documentation: use_aliases: (optional) Enable emoji aliases. See ``emoji.UNICODE_EMOJI_ALIAS``. Serves to expand the amount of emoticons, beyond these…
pythonanswered Shoo Limberger 224 -
1
votes1
answer2238
viewsA: Write file in JSON
The source files have broken lines so maybe you should use the code below (as I didn’t have the files I didn’t test so might have some error)... import json filename = "dados_geral.json" for…
-
0
votes1
answer2073
viewsA: How do I make a 2°degree equation graph using Python?
Something Like: print("="*20) valor_a = float(input("Digite o valor de A: ")) print("="*20) valor_b = float(input("Digite o valor de B: ")) print("="*20) valor_c = float(input("Digite o valor de C:…