Forwarded from Allawi ✘ Python
/python3
#SimpleFightGame
#Join @AllawiXPython
#By @XAllawiX
import random
p = ["Allawi","Wutz","Huso","STM","OnlyMe ST"]
while len(p)>1:
ded = random.choice(p)
p.remove(ded)
killers = random.choice(p)
print(f"{ded} was killed by {killers} ({ded} is out)")
print(f"\n{p[0]} won!")
#SimpleFightGame
#Join @AllawiXPython
#By @XAllawiX
import random
p = ["Allawi","Wutz","Huso","STM","OnlyMe ST"]
while len(p)>1:
ded = random.choice(p)
p.remove(ded)
killers = random.choice(p)
print(f"{ded} was killed by {killers} ({ded} is out)")
print(f"\n{p[0]} won!")