1 HELLO WORLD
Let’s start with basic coding. Python and R are the most widely used programming languages among others (for example, Java, Scala, Matlab) for data science.
Python code snippet is given below:
if <condition>:
print("Hello")
else:
print("World")
What’s the <condition> so that the code snippet prints “Hello World”?