Posts by BRKappa • 41 points
8 posts
-
0
votes1
answer103
viewsQ: Find div id with variations - Web Scraping - Beautifulsoup
Assuming I have the following div ids <div id='post_message_12932087> <p>random text</p> </div> <div id='post_message_21390123> <p>random text2</p>…
-
-2
votes1
answer84
viewsQ: I cannot extract a password file using Dotnetzip
I am trying to extract a file called "1.zip" with a random password that I have put... but I’m making a mistake. "e was null". At the point of burning the PC, I’m beginner in C#, I don’t know POO…
-
0
votes1
answer77
viewsQ: How to detect specific text in a string
I want to make a program that detects if it has a specific "text" in the input typed by the user. In this example, the "text": 100 I want it to detect this 100 (position independent) in the input.…
python-3.xasked BRKappa 41 -
0
votes2
answers457
viewsQ: How to join texts in a file?
I’m trying to develop a program, which does the following: From 1 to 100, he writes in a text file the word "test". And after that, I want him to join the word "test" OF EACH LINE with the…
python-3.xasked BRKappa 41 -
1
votes1
answer1870
viewsQ: How to save the result to a file?
Well, I’m doing a program that takes the spaces of sentences, letters, words, and puts each "phrase/letter/word" under each other. For example: A "phrase/letter/word": BAB BBA ACA AAB BCB CBB ABC…
python-3.xasked BRKappa 41 -
2
votes2
answers831
viewsQ: How do I check if it’s uppercase, lowercase, or mixed with lowercase?
print('-----') print('TESTE') print('-----') print() lista = ['Joao', 'Joaozinho', 'Rafael'] print(lista) var = str(input('Digite algum dos nomes da lista:')) if var == 'Joao' or var == 'João' or…
-
0
votes1
answer5061
viewsQ: How to make the link clickable, to be accessed?
print('-----') print('SITES') print('-----') print() print() print('Duolingo Brasileiro') print('Duolingo Inglês') print('Duolingo Alemão') escolha_site = str(input('Escolha qual versão do site do…
python-3.xasked BRKappa 41 -
0
votes1
answer220
viewsQ: How to make the program write all information?
print('Bem-vindo!') print() numero_contas = int(input('Deseja registrar quantas contas: ')) x = 0 while x < numero_contas: x = x + 1 conta = str(input('A conta é de qual site:')) print() usuário…
python-3.xasked BRKappa 41