What would output this code? print(hello world)

It would be an error since you can only print a string. To make a string we must have "" or str() print("hello world")

TJ

Related Python Mentoring answers

All answers ▸

Write a basic program to output the lowest of 3 input numbers. (You may omit error checks on your inputs)


How do I use for loops in Python?


Creating string from multiple strings(or characters)


Create a program that generates prime numbers between two integer boundareis