0
help me guys i m new..I am having problem with quotations what will be the code if the output is "hello world" and 'hello world'
code - ? output - "hello world" code - ? output - 'hello world'
1 Answer
+ 3
print('"Hello world"')
print("'Hello world'")
first one is apostrophe-parentheses-Hello-world-parentheses-apostrophe
second one is parentheses-apostrophe-Hello-world-apostrophe-parentheses