fix the syntax
write the code!
coding
data types
what does it do??
100

print ananya

print("ananya")

100

make it say ananya in the result box

print("ananya")

100

what is code???

set of instructions for the computer to follow

100

5678

integer

100

name = input("what is your name?")

print(name)

prints the user's name

200

"what is your name?"

input("what is your name?")

200

ask - what is your name?

input("what is your name?")

200

3 places coding is used

check response

200

12345.0

float

200

grade = 80

if grade != 100:

     print("happy birthday")

prints happy birthday

300

1st place = "Ananya"

firstplace = "Ananya"

300

convert the score to an integer

int(score)

300

what is a language in coding??

check response

300

"4"

string

300
#ananya

#print("lightning mcqueen")

nothing happens

400

if score >= 90

print("good job")


if score >= 90:

   print("good job")


400

make an if statement!

check response

400

what are the 3 sections on repl.it

results

instructions

program

400

-5.6

float

400

height = int(input("how tall are you?"))

print(height)

prints the user's height

500

if score = 100:

if score == 100:

500

make the code for 

check response

500
how was the coding language "python" named?

monty python

500

twelve

syntax error

500

grade = input("what was your grade?")

if grade >=90:

  print("you got an A!")

syntax error

M
e
n
u