[Challenge] Hello, Creativity! 08-23-2015, 10:09 PM
#1
This challenge is based off of an entry I was going to do for @Eclipse's Anti-golfing Hello world challenge, however I have decided to branch off and make this a creativity challenge rather than golfing. If you haven't seen Eclipse's thread, you can view it here: https://www.sinister.ly/Thread-Syntax-An...ello-World
The challenge is simple. You will be making writing a program that print "Hello, Creativity!" in the most creative way you can think of. Byte count does NOT matter here, and as creativity can be subjective, I won't be picking winners (and this is really just for fun anyways).
Here's my little creative solution in Python 3:
(Also I didn't use the if statement to properly execute the program, bite me)
Output:
The challenge is simple. You will be making writing a program that print "Hello, Creativity!" in the most creative way you can think of. Byte count does NOT matter here, and as creativity can be subjective, I won't be picking winners (and this is really just for fun anyways).
Here's my little creative solution in Python 3:
Code:
characters = [
[72 , [0] ],
[101, [1,9] ],
[108, [2,3] ],
[111, [4,8] ],
[44 , [5] ],
[32 , [6] ],
[67 , [7] ],
[114, [8] ],
[97 , [10] ],
[116, [11,15]],
[105, [12,14]],
[118, [13] ],
[121, [16] ],
[33 , [17] ]
]
string = ""
for (character, positions) in characters:
string += (" " * len(positions))
for (character, positions) in characters:
string = list(string)
for position in positions:
string[position] = chr(character)
string = "".join(string)
print(string)(Also I didn't use the if statement to properly execute the program, bite me)
Output:
Code:
LVL 84 (686/4120) ~ ●●● python ~/Desktop/Python/antigolf.py
Hello, Creativity!![[Image: BXqGARG.png]](https://i.imgur.com/BXqGARG.png)








![[+]](https://sinister.ly/images/modern/collapse_collapsed.png)









![[Image: cVde48m.png]](https://i.imgur.com/cVde48m.png)