Data Analyst vs Data Scientist vs Data EngineeringData Analyst vs Data Scientist vs Data Engineering

0 Comments

Data play an important role in today’s world. Today it is being used in decision making and different firms, and organizations are using their respective data for effective data driven decisions. In this article, we will explore about Data Analyst, Data Engineer, and Data Scientist. Data Analyst Data Analyst will


Loop in PythonLoop in Python

0 Comments

Range method returns values between start and stop, increasing by the value of step (defaults to 1)…   range(start, stop, step) >>> for i in range (0, 10): … print(i) File “<stdin>”, line 2 print(i) ^ IndentationError: expected an indented block Lets fix this with a comma before print statement for


String in PythonString in Python

0 Comments

Str.capitalize() returns a copy of the string containing first character capitalized and the rest in lowercased x = "hello" x.capitalize()   Output: Hello Str.lower() returns a string in which all characters are in lowercased x = "HELLO" x.lower() Output: hello Str.upper() returns a string in which all characters are in uppercased x=


Hello Python! Get Started with PythonHello Python! Get Started with Python

0 Comments

You can download python from https://www.python.org/downloads/ don’t forget to mention python path in environment variables. You can also install Anaconda and work on Ipython or Jypyter https://www.anaconda.com/download So after installation in your terminal, you can simply run the command: python To open the python shell and start running python commands.