Die Suche ergab 4 Treffer

von Yeti Master
Dienstag 11. April 2006, 07:16
Forum: Showcase
Thema: Matrix, Uhr und Totto
Antworten: 11
Zugriffe: 4558

@Leonidas
Ich meine das so:
Ich programmiere ein Programm zB. Totto
Das will ich auf meine Homepage geben dh.
eine Eingabefläche, wo man die Sportart eingibt
und zwei Eingabeflächen für die Mannschaften
und dann soll das Ergebnis geschrieben werden.

Danke für die Antwort

@Python Master 47
ich hab ...
von Yeti Master
Montag 10. April 2006, 13:44
Forum: Showcase
Thema: Matrix, Uhr und Totto
Antworten: 11
Zugriffe: 4558

Hier:


from random import randrange
import time
import winsound

def uhr():
s =500
while True:
a = time.strftime("%H:%M:%S")
print a
winsound.Beep(s,2)
time.sleep(1)

def matrix():
o = "0"
m = "1"
while True:
a = randrange(1,5)
b = randrange(1,5)
c = randrange(1,5)
d = randrange(1,5 ...
von Yeti Master
Montag 10. April 2006, 12:55
Forum: Showcase
Thema: Matrix, Uhr und Totto
Antworten: 11
Zugriffe: 4558

Danke für die Tipps
Habs ausgebessert

Habe noch ein paar andere Programme programmiert
von Yeti Master
Montag 10. April 2006, 11:39
Forum: Showcase
Thema: Matrix, Uhr und Totto
Antworten: 11
Zugriffe: 4558

Matrix, Uhr und Totto

Hallo ich bin neu,
bin ein Python Anfänger (seit ca. 1 Monat)
habe schon ein paar Programme programiert wollte eure Meinung hören!


from random import*

def matrix():
o = "0"
m = "1"
x = 0
while x == 0:
a = randrange(1,5)
b = randrange(1,5)
c = randrange(1,5)
d = randrange(1,5)
e ...