Tagged Questions
3
votes
3answers
1k views
Python String Formatting And String Multiplication Oddity
Python is doing string multiplication where I would expect it to do numeric multiplication, and I don't know why.
>>> print('%d' % 2 * 4)
2222
>>> print('%d' % (2 * 4))
8
Even ...
1
vote
2answers
241 views
What is the order of operations with this concatenation?
x = "hello" " world".to_sym
puts x.class
This works and allows me to concatenate the two strings into a symbol, producing the output:
Symbol
But if I change it slightly to use a + instead of ...