Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
$sudo apt-get update $sudo apt-get upgrade $sudo apt-get install r-base r-base-dev
$sudo apt-get install libzmq3-dev
install.packages(c('rzmq','repr','IRkernel','IRdisplay'),
repos = c('http://irkernel.github.io/', getOption('repos')),
type = 'source')
IRkernel::installspec()
We all employ short-term and long-term strategies to achieve our goals. These include our working habits, the way we think about scientific questions, strategies for surveying the literature, the way we set up experiments and controls, the way we analyze data, and how we set ourselves up today for questions we want to address in the future.All in all, I found this exercise to be quite useful, and would encourage anyone reading this to mentally answer the questions for themselves. Anyway, here are the last three questions.
import time import random #Introduction print("Hello, Players!") print("Welcome to Multiplication Battles!") print("") #Input information player1 = input("What is your name, Player 1? ") player1_points = 0 player2 = input("What is your name, Player2? ") player2_points = 0 length_per_round = int(input("How many seconds do you want each round to be? ")) highest_num = int(input("What's the largest number you want to multiply? ")) #Launch Player1's game print("") input("{}! Hit Enter to start your time.".format(player1)) current_time = time.time() end_time = current_time + length_per_round while current_time <= end_time: #Do math a = random.randint(0, highest_num) b = random.randint(0, highest_num) c = a*b answer = int(input("What is {}x{}? ".format(a,b))) #Check if right or wrong if answer == c: print("You're Correct!") player1_points += 1 else: print("Sorry. {}x{}={}.".format(a,b,c)) #Must update the time at the end of each loop. current_time = time.time() print("You scored {} points!".format(player1_points)) #Get ready for Player2 print("") input("{}! Hit Enter to start your time.".format(player2)) current_time = time.time() end_time = current_time + length_per_round while current_time <= end_time: #Do math a = random.randint(0, highest_num) b = random.randint(0, highest_num) c = a*b #Check if right or wrong answer = int(input("What is {}x{}? ".format(a,b))) if answer == c: print("You're Correct!") player2_points += 1 else: print("Sorry. {}x{}={}.".format(a,b,c)) #Must update the time at the end of each loop. current_time = time.time() print("You scored {} points!".format(player2_points)) #Decide a winner print("") if player1_points > player2_points: print("{} wins! Good job!".format(player1)) elif player2_points > player1_points: print("{} wins! Good job!".format(player2)) else: print("It was a tie! You two should play again!")
import time import randomThese two lines give us access to other pieces of code we'll use later in the script. This page lists all of the 'libraries' that come standard with Python.
#Introduction print("Hello, Players!") print("Welcome to Multiplication Battles!") print("")print ""This is the beginning of the game. The keyword 'print' is how text shows up in the console when running python. Notice that everything being printed in inside of quotation marks. This just indicates that we are printing some normal text, technically called a 'string'. Other things, like integers, for example, can also be printed.
#Input information player1 = input("What is your name, Player 1? ") player1_points = 0 player2 = input("What is your name, Player 2? ") player2_points = 0 length_per_round = int(input("How many seconds do you want each round to be? ")) highest_num = int(input("What's the largest number you want to multiply? "))Before launching into questions, the game collects a little bit of information about who's playing. The first thing we do is create 'player1' by asking the game players to input the name of the first player. Whatever the player types in will be stored inside of the variable 'player1'. We need to keep track of how many points the first person has, so we'll create another variable called player1_points. Since the game hasn't started, the first player currently has 0 points. The reason that the words on the left hand side of the equals sign are called variables is because their values can change over the course of the program. When the first player correctly answers a question, they'll gain a point and we'll overwrite the score stored in 'player1_points'. We'll see how this works later. Variables are a pretty complicated concept for 4th graders. The idea was one of the biggest difficult while teaching this course. If anyone has difficulty understanding what's going on here, I highly recommend checking out 'How to Automate the Boring Stuff'.
#Launch Player1's game print("") input("{}! Hit Enter to start your time.".format(player1)) current_time = time.time() end_time = current_time + length_per_roundLine number 3 is a nice way to pause the game until the first player is ready. But what's going on with the '{}'? It's just a placeholder in the text. When it is printed to the console, the first player's name will be displayed in the sentence. So, if I were playing, for example, the prompt would read, 'Jessime! Hit Enter to start your time.' As soon as I hit enter, the next line of code would execute.
while current_time <= end_time: #Do math a = random.randint(0, highest_num) b = random.randint(0, highest_num) c = a*b answer = int(input("What is {}x{}? ".format(a,b)))This is where the first player begins getting questions. The first line is what's known as a while loop. Loops are another tough subject; use the link and other resources on Google to get more information if necessary. What's happening here is quite straightforward though. We're telling Python 'Hey, execute this next bit of code over and over until the first player runs out of time'. The 'next bit of code' means all of the lines which start 4 spaces over. The code that we're going to execute over and over is:
#Check if right or wrong if answer == c: print("You're Correct!") player1_points += 1 else: print("Sorry. {}x{}={}.".format(a,b,c))Note: This should be indented 4 spaces, but the syntax highlighter won't allow is. Look at the whole code or the player2 example for proper indentation.
#Must update the time at the end of each loop. current_time = time.time()This line is absolutely key to the while loop. It's the last line of the while loop, which means, since we're in a loop, we're about to jump back up to line 22 (of the whole code). Once we are back at 22, we're going to reevaluate if we have any time left. The only way that the 'current_time' variable will be accurate is if we update it by 'current_time = time.time()'. If we don't have this line, the while condition will always be true, you'll enter an infinite loop, and you'll have to shutdown python manually. Make sure to have this line.
print("You scored {} points!".format(player1_points))We can let the first player know how many points they scored. It may not look like it from the line count, but at this point, we're pretty much finished. A majority of the rest of the code is a duplicate of what we just did, but for the second player.
#Get ready for Player2 print("") input("{}! Hit Enter to start your time.".format(player2)) current_time = time.time() end_time = current_time + length_per_round while current_time <= end_time: #Do math a = random.randint(0, highest_num) b = random.randint(0, highest_num) c = a*b #Check if right or wrong answer = int(input("What is {}x{}? ".format(a,b))) if answer == c: print("You're Correct!") player2_points += 1 else: print("Sorry. {}x{}={}.".format(a,b,c)) #Must update the time at the end of each loop. current_time = time.time() print("You scored {} points!".format(player2_points))Literally the only change here is that I've replaced 'player1' with 'player2'. Now that each player has had their turn, the only thing left to do is figure out who the winner is.
#Decide a winner print("") if player1_points > player2_points: print("{} wins! Good job!".format(player1)) elif player2_points > player1_points: print("{} wins! Good job!".format(player2)) else: print("It was a tie! You two should play again!")This block of code should look very similar to the part where we decided if the players correctly answered the question or not. The only difference is that there are now three things that can happen: