Tagged Questions
24
votes
7answers
5k views
Equivalent of Backticks in Python
What is the equivalent of the backticks found in Ruby and Perl in Python? That is, in Ruby I can do this:
foo = `cat /tmp/baz`
What does the equivalent statement look like in Python? I've tried ...
1
vote
3answers
245 views
In Python 2.x, using backticks to get decimal string from int object is Horrible?
In Python 2.x, using backticks to get decimal string from int object is Horrible?
Because backticks are repr(), not str()? I have noticed that when I answering this question.
In Python source, they ...