Python basics quiz
Fill in the blanks Python is a popular programming language. We used the website repl.it to write our python code. When we want to output something to the user we use the printstatement Which of these is the correct format for a print statement Print(Hello) print(hello) print"hello" print("hello") Watch the video on the python print function and then answer the questions below. What would be the result of:print(5+5) What would be the result of:print(2*2.5)