0
votes
2answers
80 views
How to create an image from a string in python
Hi,
I'm currently having trouble creating an image from a binary string of data in my Python program. I receive the binary data via a socket but when I try the methods I read abo …
3
votes
6answers
229 views
Is there a way to split a string by every nth seperator in Python?
For example, if I had the following string:
"this-is-a-string"
Could I split it by every 2nd "-" rather than every "-" so that it returns two values ("this-is" and "a-string") ra …
0
votes
2answers
47 views
insert string in the middle of a file given a file object
I am working on a problem and got stuck at a wall
I have a (potentially large) set of text files, and I need to apply a sequence of filters and transformations to it and export it …
3
votes
3answers
100 views
str.format(list) with negative index doesn’t work in Python
I use a negative index in replacement fields to output a formatted list,but it raises a TypeError.The codes are as follows:
>>> a=[1,2,3]
>>> a[2]
3
>>> a[-1]
3
>>> 'The last:{0[ …
1
vote
3answers
130 views
Grep multi-layered iterable for strings that match (Python)
Say that we have a multilayered iterable with some strings at the "final" level, yes strings are iterable, but I think that you get my meaning:
['something',
('Diff',
('diff', 'u …
0
votes
3answers
55 views
Rounding Decimals with New Python Format Function
How do I round a decimal to a particular number of decimal places using the Python 3.0 format function?
0
votes
5answers
107 views
parsing string to a dict
I have a string output which is in form of a dict ex.
{'key1':'value1','key2':'value2'}
how can make easily save it as a dict and not as a string?
0
votes
2answers
105 views
Parsing a text file with Python?
Hello,
I have to do an assignment where i have a .txt file that contains something like this
p
There is no one who loves pain itself, who seeks after it and wants to
have it, simpl …
0
votes
5answers
89 views
Better way to do string filtering/manipulation
Hello I have this string:
mystring = '14| "Preprocessor Frame Count Not Incrementing; Card: Motherboard, Port: 2"|minor'
So I have 3 elements (id, message and level) divided by …
2
votes
2answers
50 views
String replacing in a file by given position
I have a file opened in 'ab+' mode.
What I need to do is replacing some bytes in the file with another string's bytes such that:
FILE:
thisissomethingasperfectlygood.
string:
…
4
votes
4answers
131 views
newbie question: why are python strings and tuples are made immutable?
a newbie question.
i am not sure why strings and tuples were made to be immutable; what are the advantages and disadvantage of making them immutable?
please be gentle as it is a …
2
votes
3answers
70 views
How to match columns in MySQL.
Everyone knows the "=" sign.
SELECT * FROM mytable WHERE column1 = column2;
However, what if I have different contents in column1 and column2...but they are VERY similar? (maybe …
2
votes
2answers
103 views
In Python, how do I transform a string into a file?
There is a read-only library function that takes a file as an argument.
But I have a string.
How do I convert a string to a file, that if you read the file it will return this str …
0
votes
5answers
256 views
The SHORTEST way to remove multiple spaces in a string in Python
Suppose this is the string:
The fox jumped over the log.
It would result in:
The fox jumped over the log.
What is the simplest, 1-2 liner that can do this? Without spl …
0
votes
2answers
62 views
os.popen subprocess conversion
Hi Pythoners.
This snippet gets me the dotted quad of my BSD network interface.
I would like to figure out how to use the subprocess module instead.
ifcfg_lines = os.popen("/sbin …
