| 1 |
#!/usr/bin/env python |
|---|
| 2 |
names = ["aces", "amazing", "astonishing", "astounding", |
|---|
| 3 |
"bang-up", "best", "breathtaking", "cool", "crack", |
|---|
| 4 |
"doozie", "extravagant", "fab", "fantastic", |
|---|
| 5 |
"first class", "gone", "groovy", |
|---|
| 6 |
"immense", "in spades", "inconceivable", "incredible", |
|---|
| 7 |
"legendary", "marvelous", "mind-blowing", "out-of-this-world", |
|---|
| 8 |
"outrageous", "phenomenal", "primo", "prodigious", |
|---|
| 9 |
"rad", "remarkable", "spectacular", "striking", "stupendous", |
|---|
| 10 |
"super", "superb", "terrific", "top drawer", "tops", "turn-on", |
|---|
| 11 |
"unbelievable", "unreal", "wicked", "wondrous"] |
|---|
| 12 |
|
|---|
| 13 |
import random |
|---|
| 14 |
print random.choice(names) |
|---|