Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm sure it's a silly question to those who know...but I can't find an explanation of what it does or what it is.

CSV.open('data.csv', 'r') do |row|
  p row
end

What does "p row" do?

share|improve this question

4 Answers

up vote 50 down vote accepted

p() is a Kernel method that write's obj.inspect to the standard output.

Because Object mixes in the Kernel module, the p() method is available everywhere. It's common to use it in poetry mode, meaning that the parens are dropped. (I like poetry mode, for example your CSV snippet can be written without using parens for the open call.)

CSV.open 'data.csv', 'r' do |row|
  p row
end

To find the docs for it, go to http://www.ruby-doc.org/core-1.8.7/index.html and look for the p method in the right hand navigation column.

share|improve this answer
+1 for adding the link to the doc – edwardsmatt Aug 8 '11 at 23:10

Kernel#p is the little debugging brother of Kernel#puts: it more or less works exactly like it, but it converts its arguments using #inspect instead of #to_s.

The reason why it has such a cryptic name is so that you can quickly throw it into an expression and take it out again when debugging. (I guess it's a lot less useful now that Ruby is getting better and better "proper" debugging support.)

Some alternatives to Kernel#p are Kernel#pp (pretty print) from the pp standard library and Kernel#y (YAML) from the yaml standard library.

share|improve this answer

Why not try it?

>> [1,2,3].each { |d| p d }
1
2
3
share|improve this answer
3  
Actually it calls #inspect to its argument first, but close enough ;) – hrnt Nov 18 '09 at 19:07
True. Removed my 'alias' comment since it's just plain wrong. Maybe more like 'wrapper'. – rfunduk Nov 18 '09 at 19:22

The other option for documentation that you already have on your system is the ri command. At any time you can type: ri p or if p is defined in a lot of places (which it is) for central commands you can try ri Kernel.p. Other good bets are Array. or String.

If you end up installing a bunch of gems this will slow down a lot but you can look up the fastri gem which speeds up the lookup process incredibly.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.