fork download
  1. print('He said his name was %s.' %'Al Ardosa')
  2. # output: He said his name was Al Ardosa.
  3.  
  4. print('He said his name was %r.' %'Al Ardosa')
  5. # output: He said his name was 'Al Ardosa'.
  6.  
  7. print('I once caught a fish %s.' %'this \tbig')
  8. # output: I once caught a fish this big.
  9.  
  10. print('I once caught a fish %r.' %'this \tbig')
  11. # output: I once caught a fish 'this \tbig'.
  12.  
  13. print('I wrote %s programs today.' %4.77)
  14. # output: I wrote 4.77 programs today.
  15.  
  16. print('I wrote %d programs today.' %4.77)
  17. # output: I wrote 4 programs today.
Success #stdin #stdout 0.02s 9116KB
stdin
Standard input is empty
stdout
He said his name was Al Ardosa.
He said his name was 'Al Ardosa'.
I once caught a fish this 	big.
I once caught a fish 'this \tbig'.
I wrote 4.77 programs today.
I wrote 4 programs today.