Python Forum
Search Results
Post Author Forum Replies Views Posted [asc]
  Sad Thread: Check if a given string has its open brackets closed by the same type of brackets?
Post: Check if a given string has its open brackets clos...

I hope not to sound very weird here, basically, suppose that you have the following strings: s1 = '{[]}' s2 = '[(])' s3 = '()[]{}'And you want to build a program/function that verifies ...
noahverner1995 Homework 1 1,253 Apr-11-2022, 12:18 PM
  Sad Thread: Selenium: can't open a new window after clicking a button and I don't know why
Post: Selenium: can't open a new window after clicking a...

I have a simple python program that opens this page with chromedriver.exe, then it clicks on the wallet icon located at the top right corner of that page, for then clicking on the MetaMask wallet butt...
noahverner1995 General Coding Help 0 1,990 Jan-22-2022, 09:55 AM
    Thread: How to get html information from a tab of my default browser opened with webbrowser?
Post: RE: How to get html information from a tab of my d...

(Jan-14-2022, 09:09 AM)buran Wrote: webbrowser.open_new_tab() returns boolean value. It does not return html source of the page you open. You can use requests package or if the webpage uses JavaSc...
noahverner1995 General Coding Help 2 4,513 Jan-14-2022, 10:02 AM
  Question Thread: How to get html information from a tab of my default browser opened with webbrowser?
Post: How to get html information from a tab of my defau...

I have tried to figure out how can I get html information (such as h1 tags) from a new tab in my default browser that was opened with the following program: import tkinter as tk #from tkinte...
noahverner1995 General Coding Help 2 4,513 Jan-14-2022, 02:32 AM
    Thread: How can I merge several images via loop using the information of a dataframe?
Post: RE: How can I merge several images via loop using ...

Solved here
noahverner1995 General Coding Help 1 1,450 Dec-31-2021, 05:03 AM
  Question Thread: How can I merge several images via loop using the information of a dataframe?
Post: How can I merge several images via loop using the ...

I have the following dictionary: the_dictionary_list = {'Fondo': ['Oceano.png'], 'Cuerpo': ['Cuerpo_cangrejo.png'], 'Ojos': ['Antenas.png', 'Pico.png', '...
noahverner1995 General Coding Help 1 1,450 Dec-27-2021, 11:32 AM
    Thread: How can I save cartesian products to a dataframe?
Post: RE: How can I save cartesian products to a datafra...

(Dec-27-2021, 08:11 AM)noahverner1995 Wrote: I have the following dictionary: the_dictionary_list = {'Fondo': ['Oceano.png'], 'Cuerpo': ['Cuerpo_cangrejo.png'], ...
noahverner1995 Data Science 1 1,653 Dec-27-2021, 09:15 AM
  Question Thread: How can I save cartesian products to a dataframe?
Post: How can I save cartesian products to a dataframe?

I have the following dictionary: the_dictionary_list = {'Fondo': ['Oceano.png'], 'Cuerpo': ['Cuerpo_cangrejo.png'], 'Ojos': ['Antenas....
noahverner1995 Data Science 1 1,653 Dec-27-2021, 08:11 AM
    Thread: How to print each possible permutation in a dictionary that has arrays as values?
Post: RE: How to print each possible permutation in a di...

(Dec-26-2021, 12:37 PM)paul18fr Wrote: Maybe with: import itertools as it the_dictionary_list = {'Color': ['Amarillo.png', 'Blanco.png', 'Rojirosado.png', 'Turquesa.png', 'Verde_oscuro.png', 'Zapo...
noahverner1995 General Coding Help 2 1,766 Dec-27-2021, 03:43 AM
  Question Thread: How to print each possible permutation in a dictionary that has arrays as values?
Post: How to print each possible permutation in a dictio...

Let's say I have the following arrays of strings: Background = ["Ocean"] Body = ["Normal"] Eyes = ["Big", "Small", "Monolid"] Color = ["Yellow", "White", "Red Rose", "Turquoise", "Dark green", "Orang...
noahverner1995 General Coding Help 2 1,766 Dec-26-2021, 10:38 AM
    Thread: How to let the user add 'None' to an specific array in a dictionary?
Post: RE: How to let the user add 'None' to an specific ...

(Dec-26-2021, 09:42 AM)ibreeden Wrote: if None in the_dictionary_list[key_entrada]: print("None is already in the list") else: the_dictionary_list[key_entrada].insert(0, 'None') Thank you ag...
noahverner1995 General Coding Help 4 1,807 Dec-26-2021, 10:03 AM
    Thread: How to let the user add 'None' to an specific array in a dictionary?
Post: RE: How to let the user add 'None' to an specific ...

(Dec-26-2021, 02:00 AM)BashBedlam Wrote: Something like this maybe? the_dictionary_list = { 'Color': ['Amarillo.png', 'Blanco.png','Rojirosado.png', 'Turquesa.png', 'Verde_oscuro.png', 'Zapote.png'...
noahverner1995 General Coding Help 4 1,807 Dec-26-2021, 05:28 AM
  Question Thread: How to let the user add 'None' to an specific array in a dictionary?
Post: How to let the user add 'None' to an specific arra...

Ok so, the question may sound confusing at first but I'm gonna do my best to explain what I would like to learn in order to improve my programming skills. Let's say I have a path in which exists 6 fo...
noahverner1995 General Coding Help 4 1,807 Dec-26-2021, 12:12 AM
    Thread: How can I create a linked list that contains each folder with its files?
Post: RE: How can I create a linked list that contains e...

(Ignore this post, I replied twice and could not delete the second one)
noahverner1995 Homework 8 2,433 Dec-25-2021, 10:46 PM
    Thread: How can I create a linked list that contains each folder with its files?
Post: RE: How can I create a linked list that contains e...

(Dec-25-2021, 09:42 AM)ibreeden Wrote: (Dec-25-2021, 07:55 AM)noahverner1995 Wrote: Well, that would work indeed, but how can a program manage to get the data from the folders in the path provided...
noahverner1995 Homework 8 2,433 Dec-25-2021, 10:35 PM
    Thread: How can I create a linked list that contains each folder with its files?
Post: RE: How can I create a linked list that contains e...

(Dec-24-2021, 10:27 PM)BashBedlam Wrote: Are you just looking for a dictionary like this? the_linked_list = { 'Color' : ('1.png', '2.png', '3.png'), 'Cuerpo' : ('Body.png'), 'Fondo' : ('...
noahverner1995 Homework 8 2,433 Dec-25-2021, 07:55 AM
    Thread: How can I create a linked list that contains each folder with its files?
Post: RE: How can I create a linked list that contains e...

(Dec-24-2021, 09:30 AM)ibreeden Wrote: Hi @noahverner1995 , Welcome to the forum. We will help you but you must understand: we don't write programs for you. We will only help you creating them. So ...
noahverner1995 Homework 8 2,433 Dec-25-2021, 07:53 AM
  Question Thread: How can I create a linked list that contains each folder with its files?
Post: How can I create a linked list that contains each ...

Let's say that I have the following folders in a path called C:\Users\Test [Image: https://i.stack.imgur.com/iv4My.png] Every single one of them contains only images (In PNG format) with a different...
noahverner1995 Homework 8 2,433 Dec-24-2021, 05:41 AM

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020