python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
How can i find all possible English words from a scrambled word
Given an input of scrambled word, and I have a file of English words. I want to find all possible words that can be formed from the scrambled word.
from itertools import permutations
def unscramble(sc...
Taiwo Solomon
Votes: 0
Answers: 2
Fill selected columns with chosen input (to external .txt file )
How it should work
You input 2 columns that exist in a table that is in a txt file.
Then you need to enter a sign for example * that will replace all numbers that are in columns that you selected.
Exp...

Gryva
Votes: 0
Answers: 2
Unable to loop over a file using context manager python3
instances = ['XYZ']
curr_date = time.strftime("%Y%m%d")
for inst_name in instances:
with open(f'results_{inst_name}_master.csv') as f:
pkt_name = f.readline().sp...

User123
Votes: 0
Answers: 1
How to select file and folder with single browser?
is it possible to select files or folders with single input tag
Note--->i am able to select mutiple files but problem is for selecting a folder and file we need two buttons. i want to do it by sing...
Vikash Mishra
Votes: 0
Answers: 0