Download Article
Download Article
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
-
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
-
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
-
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
Search
-
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:'
Ask a Question
200 characters left
Include your email address to get a message when this question is answered.
Submit
Advertisement
Tips
- Pay very close attention to symbols such as commas, parentheses, colons, and apostrophes.
- Pay very close attention to when you should start a new line and when you should make an indentation.
- When running your code, if you come across a syntax error, it might be because you misspelled something.
Submit a Tip
All tip submissions are carefully reviewed before being published
Name
Please provide your name and last initial
Thanks for submitting a tip for review!
Advertisement
Things You'll Need
- A computer running Windows.
About This Article
Thanks to all authors for creating a page that has been read 25,574 times.
Advertisement