14
votes
3answers
7k views
Convert hex string to int in Python
How do I convert a hex string to an int in Python? I may have it as "0xffff" or just "ffff".
13
votes
10answers
1k views
What is the most efficient way in Python to convert a string to all lowercase stripping out all non-ascii alpha characters?
I have a simple task I need to perform in Python, which is to convert a string to all lowercase and strip out all non-ascii non-alpha characters.
For example:
"This is a Test" -> "thisisatest"
…
12
votes
6answers
1k views
Standard way to embed version into python package?
Hey everyone,
Is there a standard way to associate version string with a python package in such way that I could do the following?
import foo
print foo.version
I would imagine there's some way to …
11
votes
4answers
2k views
Iterating over a String (Python)
In C++, I could do:
for(int i = 0; i < str.length(); ++i)
std::cout << str[i] << std::endl;
How do I iterate over a string in Python?
10
votes
1answer
1k views
Splitting a semicolon-separated string to a dictionary, in Python
I have a string that looks like this:
"Name1=Value1;Name2=Value2;Name3=Value3"
Is there a built-in class/function in Python that will take that string and construct a dictionary, as though I had …
10
votes
9answers
2k views
In python how to I verify that a string only contains letters, numbers, underscores and dashes?
I know how to do this if I iterate through all of the characters in the string but I am looking for a more elegant method.
Thanks
9
votes
3answers
902 views
How do I wrap a string in a file in Python?
How do I create a file-like object (same duck time as File) with the contents of a string?
9
votes
14answers
4k views
Ignore case in Python strings
What is the easiest way to compare strings in Python, ignoring case?
Of course one can do (str1.lower() <= str2.lower()), etc., but this created two additional temporary strings (with the obvious …
9
votes
6answers
2k views
How do I sort a list of strings in Python?
What is the best way of creating an alphabetically sorted list in Python?
8
votes
6answers
615 views
What’s the most efficient way to find one of several substrings in Python?
Hello,
I have a list of possible substrings, e.g. ['cat', 'fish', 'dog']. In practice the list contains hundreds of entries.
I'm processing a string, and what I'm looking for is to find the index …
8
votes
6answers
2k views
Good Python modules for fuzzy string comparison?
I'm looking for a Python module that can do simple fuzzy string comparisons. Specifically, I'd like a percentage of how similar the strings are. I know this is potentially subjective so I was hoping …
8
votes
8answers
10k views
Python - Parse String to Float or Int
This should be simple - In python, how can I parse a numeric string like "545.2222" to its corresponding float value, 542.2222 or "31" to an integer, 31?
EDIT: I just wanted to know how to parse a …
8
votes
3answers
3k views
How to get the function name as string in Python?
In Python, How do I get the function name as a string without calling the function?
def my_function():
.
.
.
print get_function_name_as_string(my_function) # my_function is not in quotes
output …
8
votes
10answers
7k views
How do I split a string into a list Python?
Learning to program, trying to do this
I have a string like this
2+24*48/32
and I want to split it into a list like this
['2', '+', '24', '*', '48', '/', '32']
I have messed around with …
7
votes
12answers
1k views
Mass string replace in python?
Say I have a string that looks like this:
str = "The &yquick &cbrown &bfox &Yjumps over the &ulazy dog"
You'll notice a lot of locations in the string where there is an …
