Tagged Questions
89
votes
10answers
112k 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 ...
77
votes
11answers
19k 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 ...
74
votes
5answers
56k 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".
62
votes
2answers
37k views
How to trim whitespace (including tabs)?
I've come to the conclusion that python has a function for just about everything I could ask for. It's just a matter of actually finding these functions. Is there a function that will trim not only ...
61
votes
4answers
57k views
Trimming a string in Python
I need to write a function in python that gets a string-
If the first or last characters in the string are spaces, then they should be removed (both). If not than nothing should be done.
" Hello " ...
59
votes
6answers
23k views
Python: Nicest way to pad zeroes to string
What is the nicest/shortest way to pad a string with zeroes to the left, so the string length has a specific length?
42
votes
3answers
17k views
python random string generation with upper case letters and digits
I want to generate string with N size.
It should be made up of numbers and upper case english letters such as:
6U1S75
4Z4UKK
U911K4
How can I achieve this in a pythonic way ?
Thanks
41
votes
3answers
23k 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():
pass
print get_function_name_as_string(my_function) # my_function is not in quotes
should ...
40
votes
3answers
32k views
Convert byte array to Python string
I'm using this code to get standard output from an external program:
>>> from subprocess import *
>>> command_stdout = Popen(['ls', '-l'], stdout=PIPE).communicate()[0]
The ...
39
votes
7answers
36k views
Is there a way to substring a string in Python?
Is there a way to substring a string in Python, to get a new string from the 3rd character to the end of the string?
Maybe like myString[2:end]?
EDIT: If leaving the second part means 'till the ...
38
votes
7answers
6k views
Standard way to embed version into python package?
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 retrieve that ...
38
votes
7answers
21k views
Best way to strip punctuation from a string in Python
It seems like there should be a simpler way than:
import string
s = "string. With. Punctuation?" # Sample string
out = s.translate(string.maketrans("",""), string.punctuation)
Is there?
36
votes
5answers
17k 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?
35
votes
12answers
21k views
Python strings split with multiple separators
Weird - I think what I want to do is a fairly common task but I've found no reference on the web. I have text, with punctuation, and I want an array of the words. i.e - "Hey, you - what are you doing ...
32
votes
10answers
20k views
Converting from a string to boolean in Python?
Does anyone know how to do convert from a string to a boolean in Python? I found this link. But it doesn't look like a proper way to do it. I.e. using a built in functionality, etc.
EDIT: The reason ...
29
votes
6answers
13k views
Converting a String to Dictionary?
How can i convert the following:
s = "{'muffin' : 'lolz', 'foo' : 'kitty'}"
Into a dictionary object? I'd prefer not to use eval() what should i do?
The main reason for this, is one of my ...
25
votes
5answers
13k views
Does python have a string contains method?
I'm looking for a string.contains or string.indexof method in Python.
I want to do:
if not somestring.contains("blah"):
continue
24
votes
3answers
4k views
Python __str__ versus __unicode__
Is there a python convention for when you should implement __str__() versus __unicode__(). I've seen classes override __unicode__() more frequently than __str__() but it doesn't appear to be ...
24
votes
8answers
20k views
String concatenation vs. string substitution in Python
In Python, the where and when of using string concatenation versus string substitution eludes me. As the string concatenation has seen large boosts in performance, is this (becoming more) a stylistic ...
24
votes
16answers
23k 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 ...
23
votes
5answers
7k views
Count occurrence of a character in a Python string
What's the simplest way to count the number of occurrences of a character in a string?
e.g. count the number of times 'a' appears in 'Mary had a little lamb'
23
votes
7answers
21k views
How do I execute a string containing Python code in Python?
How do I execute a string containing Python code in Python?
22
votes
3answers
20k views
How do I split a mult-line string into multiple lines?
I have a multi-line string literal that I want to do an operation on each line, like so.
inputString = """Line 1
Line 2
Line 3"""
I want to do something like the following.
for line in ...
22
votes
13answers
39k 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 ...
21
votes
4answers
6k views
Proper indentation for Python multiline strings
What is the proper indentation for Python multiline strings within a function?
def method():
string = """line one
line two
line three"""
or
def method():
string = """line ...
20
votes
3answers
5k 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?
19
votes
6answers
7k views
Remove empty strings from a list of strings
I want to remove all empty strings from a list of strings in python.
My idea looks like this:
while '' in str_list:
str_list.remove('')
Is there any more pythonic way to do this?
19
votes
9answers
10k views
Why can't Python's raw string literals end with a single backslash?
Technically, any odd number of backslashes, as described in the docs.
>>> r'\'
File "<stdin>", line 1
r'\'
^
SyntaxError: EOL while scanning string literal
>>> ...
19
votes
6answers
21k views
Python format timedelta to string
I'm a python newbie (2 weeks) and I'm having trouble formatting a datetime.timedelta object.
Here's what I'm trying to do. I have a list of objects and one of the members of the class of the object ...
18
votes
4answers
5k views
What is the most efficient string concatenation method in python?
Is there any efficient mass string concatenation method in Python (like StringBuilder in C# or StringBuffer in Java)? I found following methods here:
Simple concatenation using '+'
Using UserString ...
18
votes
4answers
16k views
Python string Formatting
I have a string of this form
s='arbit'
string='%s hello world %s hello world %s' %(s,s,s)
All the %s in string have the same value (i.e. s).
Is there a better way of writing this? (Rather than ...
18
votes
2answers
7k 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 ...
17
votes
3answers
4k views
Python: Split string with multiple delimiters
I found some answers online, but I have no experience with regular expressions, which I believe is what is needed here.
I have a string that needs to be split by either a ';' or ', '
That is, it has ...
17
votes
6answers
1k views
Python: is using “..%(var)s..” % locals() a good practice?
I discovered this pattern (or anti-pattern) and I am very happy with it.
I feel it is very agile:
def example():
age = ...
name = ...
print "hello %(name)s you are %(age)s years old" % ...
17
votes
4answers
4k views
Python Case Insensitive Replace
What's the easiest way to do a case-insensitive str.replace in Python?
17
votes
11answers
8k 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"
...
17
votes
4answers
10k views
How can I repeat a string in Perl?
In Python, if I do this:
print "4" * 4
I get
> "4444"
In Perl, I'd get
> 16
Is there an easy way to do the former in Perl?
16
votes
5answers
14k views
Remove whitespace in Python using string.whitespace
Python's string.whitespace is great:
>>> string.whitespace
'\t\n\x0b\x0c\r '
How do I use this with a string without resorting to manually typing in '\t|\n|... etc for regex?
For ...
16
votes
7answers
17k views
Python: removing characters except digits from string
How can i remove all characters except numbers from string?
16
votes
6answers
13k views
Stripping everything but alphanumeric chars from a string in Python
What is the best way to strip all non alphanumeric characters from a string, using Python?
The solutions presented in the PHP variant of this question will probably work with some minor adjustments, ...
16
votes
9answers
8k 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
15
votes
3answers
5k views
String comparison in Python: is vs. ==
I noticed a Python script I was writing was acting squirrelly, and traced it to an infinite loop, where the loop condition was "while line is not ''". Running through it in the debugger, it turned out ...
15
votes
12answers
3k 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 ...
15
votes
1answer
2k views
Is there any way to get vim to auto wrap python strings at 79 chars?
I found this answer about wrapping strings using parens extremely useful, but is there a way in Vim to make this happen automatically? I want to be within a string, typing away, and have Vim just put ...
14
votes
10answers
5k views
C++ string parsing (python style)
I love how in python I can do something like:
points = []
for line in open("data.txt"):
a,b,c = map(float, line.split(','))
points += [(a,b,c)]
Basically it's reading a list of lines where ...
14
votes
5answers
22k views
How do I sort a list of strings in Python?
What is the best way of creating an alphabetically sorted list in Python?
13
votes
2answers
830 views
When to use %r instead of %s in Python?
On Learn Python the Hard Way (http://learnpythonthehardway.org/) page 21, I see this code example:
x = "There are %d types of people." % 10
...
print "I said: %r." % x
Why is %r used here instead ...
13
votes
8answers
1k views
non-technical benefits of having string-type immutable
I am wondering about the benefits of having the string-type immutable from the programmers point-of-view.
Technical benefits (on the compiler/language side) can be summarized mostly that it is easier ...
13
votes
4answers
7k views
Best way to randomize a list of strings in Python
I receive as input a list of strings and need to return a list with these same strings but in randomized order. I must allow for duplicates - same string may appear once or more in the input and must ...
13
votes
5answers
17k views
Stripping non printable characters from a string in python
I use to run
$s =~ s/[^[:print:]]//g;
on Perl to get rid of non printable characters.
In Python there's no POSIX regex classes, and I can't write [:print:] having it mean what I want. I know of ...