2,442 views
2 votes
2 votes
Re write the program below and correct all the errors

one = 1
two = 2
three = 3
four = one + two + 3
print(Four).

hello = "hello
world = "world"
helloWorld = hello + " " world
Print((helloworld))

User Kiyomi
by
3.3k points

1 Answer

6 votes
6 votes

one = 1

two = 2

three = 3

four = one + 3

print(four)

hello = "hello"

world = "world"

helloWorld = hello + " " + world

print(helloWorld)

User Elevener
by
2.9k points