Skip to content

Tag: python-3.x

Python password generation

I need to generate random passwords for my company’s 200k+ customers. The password complexity requirement is a common one: length > 8 contains at least one upper case character contains at least one lower case character contains at least one number contains at least one symbols (e.g. @#$%) Here is th…

Parse screeninfo into useable csv

I am tryin to parse a string from screeninfo to be useable in a csv file. here is my code here is the output: This results in a one cell csv because it imports the whole string. I am trying to parse it so that I can call x, y , width, height and display as individual cells. so it

Extract column from tabular data

My task is to pull a column out of table and write down its length len (). But my code is emitting it into a column, which is why len () counts each element of the column separately, and not their total water.txt: Desired intermediary output: Answer You are not correctly extracting the colum. The correct way …