Im pretty unexperienced and this is my first language so any pointers and tips will be gladly welcomed.
Im trying to create a raffle program where it asks how many participants are and with that maximum number draw out one winner. I tried with:
import random
participants = int(input('How many participants?'))
list = [participants]
winner = random.choice(list)
print('Congratz {}, you are the winner!!!'.format(winner))