Category: Data Science

  • Python Calculator

    The code here is still not finished, subject to future refinements. Hey, it’s a good start anyway.

    Code:

    printĀ ("KalkulatorĀ v1")
    
    def add(x,y):
      return (x + y)
    
    try:
      num1 = int(input("Insert 1st number: "))
    except ValueError:
      print ("Not a valid number")
      num1 = int(input("Insert 1st number: "))
    
    num2 = int(input("Insert 2nd number: "))
    
    print ("1st number is ",num1," while 2nd number is ",num2,"." )
    
    print ("The answer is: ",add(num1,num2),".")
    
    # oper = input("Insert operator: ")
    
    # References URL: https://www.programiz.com/python-programming/examples/calculator

  • Data Science

    Data Science

    Data Science is a field of study on data.

    In a data-driven organisations, more informed decisions can be made and predictions can be much more objective. While there is no perfect model to predict the future, past data can certainly help in predicting how the future will be.

    Data Science tools: Most of the tools featured here are open source in nature.

    Data Science Case Studies:

    Data Science Portfolio: A collection of portfolios relating to data science

    Portfolio 1: Calculator in Python