print ananya
print("ananya")
make it say ananya in the result box
print("ananya")
what is code???
set of instructions for the computer to follow
5678
integer
name = input("what is your name?")
print(name)
prints the user's name
"what is your name?"
input("what is your name?")
ask - what is your name?
input("what is your name?")
3 places coding is used
check response
12345.0
float
grade = 80
if grade != 100:
print("happy birthday")
prints happy birthday
1st place = "Ananya"
firstplace = "Ananya"
convert the score to an integer
int(score)
what is a language in coding??
check response
"4"
string
#print("lightning mcqueen")
nothing happens
if score >= 90
print("good job")
if score >= 90:
print("good job")
make an if statement!
check response
-5.6
float
height = int(input("how tall are you?"))
print(height)
prints the user's height
if score = 100:
if score == 100:
make the code for
check response
monty python
twelve
syntax error
grade = input("what was your grade?")
if grade >=90:
print("you got an A!")
syntax error