[ create a new paste ] login | about

CarlFK

Name:
Email:
Site/Blog:
Location:
Default language:
Favorite languages:
About:

Saved pastes by CarlFK:

Python, pasted on Nov 12:
1
2
3
4
5
"""Example Python Program"""

import random

# Create and add to a list
...
view (23 lines, 7 lines of output)
Python, pasted on Nov 8:
1
2
3
4
5
key_words={
 'state':'dead',
 'animal':'parrot',
}
partial_story = "It's a %(state)s %(animal)s."
...
view (11 lines, 5 lines of output)
Python, pasted on Nov 8:
1
2
3
4
5
s = "hello world"
for c in s:
    if c==' ':
        print "</br>"
    else:
...
view (6 lines, 2 lines of output)