This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Makes Money! | |
def rndTime(minT, maxT): | |
rnd = random.randint(minT, maxT) | |
time.sleep(rnd) | |
def rndMoney(minM, maxM): | |
rnd = random.randint(minM, maxM) | |
return rnd |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
print("Loading...\n\n") | |
import random | |
line1="" | |
line2="" | |
line3="" | |
line4="" | |
line5="" | |
line6="" | |
line7="" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
word = raw_input("Decode Word: ") | |
dkey = "qwerty,uiop:å!asdf;g.hjklø?æz xcv'bnm" | |
decoded = "" | |
word = word.lower() | |
for letterw in word: | |
for lettera in dkey: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
print('Welcome to Smart Test!') | |
print("Made by VOX.") | |
print("Adapted from Downy Test created Mikkel helped by VOX.") | |
print("\n"*3) | |
print("Loading...") | |
import time | |
import os | |
import random |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# by TheVoxcraft, on github now. | |
print(r"Welcome to TheVoxcraft's ASCII ART GENERATOR!") | |
word = raw_input("Type in a word: ") | |
current_letter = "" | |
current_count = 0 | |
line1 = "" | |
line2 = "" | |
line3 = "" | |
line4 = "" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
One Way messager! My first chat room i made in python. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from random import randint | |
class Character: | |
def __init__(self): | |
self.name = "" | |
self.health = 1 | |
self.health_max = 1 | |
def do_damage(self, enemy): | |
damage = min( | |
max(randint(0, self.health) - randint(0, enemy.health), 0), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import random as rnd | |
nu=0 | |
try: | |
with open("DATA.txt", 'r') as f: | |
c = [line.rstrip('\n') for line in f] | |
print "LOADED!" | |
except IOError: | |
print "Setting up!" | |
with open("DATA.txt", 'w') as f: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import random | |
#To do: Make it multiplayer LAN version! | |
print("\n"*50) | |
print("Welcome to guess the it!") | |
print("") | |
print("") | |
player1name=raw_input("Enter your name player 1: ") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#letter dividing | |
canRun=1 | |
while canRun == 1: | |
word=raw_input("Type in a word: ") | |
for letter in word: | |
print("Current letter: " + letter) | |
print(" ") |
OlderNewer