#use the variables below to print out "Hello Laura"
name = "Laura"
greeting = "Hello"
print out "Hello Laura"
name = "Laura"
greeting = "Hello"
print(greeting +" "+name)
test_function("print")
success_msg("Good stuff!")
Put variables into a print function
https://github.com/datacamp/datacamp-light-wordpress
#print the numbers 0 to 19
print the numbers 0 to 19
for i in range(10):
print(i)
for i in range(20):
print(i)
success_msg("Good stuff!")
Change the 10 to 20