Ein Spiel am Telefon in Python machen [geschlossen]

Post a reply

Smilies
:) :( :oops: :chelo: :roll: :wink: :muza: :sorry: :angel: :read: *x) :clever:
View more smilies

BBCode is ON
[img] is ON
[flash] is OFF
[url] is ON
Smilies are ON

Topic review
   

Expand view Topic review: Ein Spiel am Telefon in Python machen [geschlossen]

by Anonymous » 21 Feb 2025, 23:04

Ich habe im Grunde diesen Code, den ich bei einem Sleepover gemacht habe. Ich versuche, PyDroid3 zu verwenden, um diesen Text als Code als CODE zu bezeichnen. < /P>

Code: Select all

import random
import time
import pygame

pygame.mixer.init()

pygame.mixer.music.load("/sdcard/Alarms/we-are-the-champions-copia.mp3")

def dobni():#to throw
global ABC
a=random.randint(1,6)
b=random.randint(1,6)
n=random.randint(1,6)
c=1
for i in range(1,n+1):
c=c*2
ABC=a+b+c
print("Ennyit dobtál, "+str(j)+". játékos:"+str(a)+" + "+str(b)+" + "+str(c)+" = "+str(ABC)) #You threw this much:
time.sleep(0.5)

def game():
global j
global win
while win==False:
for j in range(1,int(players)+1):
print("----------------------------------------------")
time.sleep(0.5)
dobni()
list[j]=list[j]+ABC
print("Az összpontszámod: "+str(list[j]))#Your points
time.sleep(0.5)

if list[j]==100:
win=True
print(str(j)+". játékos nyert!🥳🥳🥳")#j player wins
pygame.mixer.music.play()

if list[j]>100:
list[j]=100-(list[j]-100)
print("Vagyis:"+str(list[j]))

players = 56
time.sleep(1)
print("Jegyezd meg hogy ki hányadik játékos, mert én nem fogom")#not important at all for you
list=[0]*(int(players)+1)
win=False
game()
< /code>
Ich möchte den Ausgang des Textes sehen. Ich konnte Input () 
nicht verwenden, sagte Chatgpt, also habe ich es ohne Grund 56 gemacht. Ich möchte nur, dass der Sound spielt, wenn jemand dieses "Spiel" gewinnt.

Top