X
wikiHow is a “wiki,” similar to Wikipedia, which means that many of our articles are co-written by multiple authors. To create this article, volunteer authors worked to edit and improve it over time.
This article has been viewed 11,285 times.
Learn more...
Are you and your brother debating on who should wash the laundry today? Flip a coin. You don't have a coin? Make one then! This Wikihow article will teach you how to write a program in Python that will flip a digital, imaginary coin and gives you a taste of what's it like to code. All you will need is a computer running Windows.
Steps
Part 1
Part 1 of 3:
Downloading Python
-
1Go to the Python website and download python. Here is a shortcut to the website https://www.python.org/downloads/ . Press the "Download Python 3.9.1" Option
-
2Save the file to your desktop.Advertisement
-
3Open it.
-
4Install the Python Program. Once the programme has finished installing, Python should be ready to use on your computer.
Advertisement
Part 2
Part 2 of 3:
Writing the Coin Tossing Program
-
1Go to the start menu and type in "IDLE Python". Open that file. This will open up IDLE Python.
-
2Press "CTRL" + "N" or navigate to 'File' then 'New Window' to access Python Scripting Mode. This is what is used to write the program
-
3Type in "import random" on the first line hit then enter. This will import the random module which gives access to one of the "random" modules we will use.
-
4Type in "print ( "Welcome to the Coin Flipping Program")". This will welcome the user to the program.
-
5Type this line " choice=input("Enter your side (heads or tails): ") " and press enter. This tells the user to type in either heads or tails. . This will make whatever the user types will turn into the "choice" variable.
-
6Type in " num=random.randint(1,2) " and press enter. This will randomly import a 2 number, One and Two. Python will randomly choose 'num' to become either one or two.
-
7Create an if statement. You will need to make a 'result' variable. If the randomly generated number is one, then the result will be "heads. But if the random number is 2, then the result will be "tails".
-
8Type in " if num==1: ", then press enter (Python will automatically make an indentation); after the indentation type in " result="heads" ". You will need to pay close attention and type very carefully. This step is if the 'num' variable is 1.
-
9Type in " elif num==2: ", one a new line, then press enter (Python will automatically make an indentation); after the indentation type in "result="tails" ". This new if-statement is for if the 'num' variable is 2. Again, you will need to pay close attention and type carefully.
-
10Make a line that compares the user's input and the 'result' variable. To do this, you will use another if-statement.
-
11Start on the next line and type in " if choice==result: " and then enter (Python will make an indentation); on the new line type in " print("Good Job You won The coin flipped ",result) ". If the user's input is the same as the result, it will print "Good Job You won; The coin flipped, x" (x being either heads or tails).
-
12Start on the next line and type in " else: " and then hit enter (Python will make an indentation); on the new line is, type in " print("Aw... You lost. The coin flipped ", result) ". If the user's input is not the same as the result, it will print "Aw... You lost. The coin flipped ", x" (x being either heads or tails).
-
13Type in " print("Thanks for playing. Goodbye") ". This will let the user know the program is over.
Advertisement
Part 3
Part 3 of 3:
Using the Program
-
1Run the program. To do this, you need to save the file by Pressing CTRL+ "S". A file-saver pop-up will show. Save the file on your desktop with any name.
-
2Press "F5" on the top row of your keyboard or navigate to 'Run' and press 'Run Module'. This will run your program.
-
3Type in either "heads" or "tails" (depending on your choice) and press Enter.
-
4View the output. The program will show if you won or not. It will also tell you which side of the imaginary coin it landed on.
Advertisement
Community Q&A
-
QuestionIDLE says 'invalid syntax' because of the 'elif'. What should I do?JazzTGB145Community AnswerYou can use 'else:' Statement Instead of using the 'elif:' Statement. Note: Don't use any conditions like 'else num == result:' Just use 'else:'
Advertisement
Things You'll Need
- A computer running Windows.
About This Article
Advertisement