Force Operation X

Force Operation X

Military and International Affairs

Handling top secret sneaking and infiltration missions and other black ops since 1964

About us

Handling top secret sneaking and infiltration missions and other black ops since 1964

Industry
Military and International Affairs
Company size
2-10 employees
Type
Government Agency

Updates

  • View organization page for Force Operation X, graphic

    5 followers

    View profile for Manokaran Kittusamy, B.E., MBA ,, graphic

    Engineer - Technology at Verticurl

    I am 😍 thrilled to announce that I have successfully 🙂 completed the "#Python for #Data #Science" course on #Udemy! This comprehensive course has equipped me with essential skills and knowledge in Python #programming, specifically tailored for data science applications. Course Highlights: - Mastery of Python basics and advanced features - Data manipulation and analysis with Pandas - Data visualization with Matplotlib and Seaborn - Understanding of NumPy for numerical computing - Introduction to machine learning with Scikit-Learn - Practical projects and real-world applications Skills Acquired: - Python programming - Data analysis - Data visualization - Machine learning basics - Data manipulation - Problem-solving with data I am excited to apply these skills to #real-#world data science #projects and continue my 📖 #learning 🚶♂️ #journey in this #fascinating 💻 #field.

    • No alternative text description for this image
  • View organization page for Force Operation X, graphic

    5 followers

    View profile for Manokaran Kittusamy, B.E., MBA ,, graphic

    Engineer - Technology at Verticurl

    Hello #Everyone, Below am shared the Arithmetic Operation using three numbers with #flask in #python. Herewith I have shared my HTML template details in #screenshots and below am shared the Flask details. Kindly check if anything improve from my end, Please share your thoughts in comment place. It will be more helpful in my learning journey in the #AIEngineering. Thanks in advance 🙂 . app.py: from flask import Flask, request, render_template app = Flask(__name__) @app.route('/') def index():     return render_template('index.html') @app.route('/calculate', methods=['POST']) def calculate():     num1 = float(request.form['num1'])     num2 = float(request.form['num2'])     num3 = float(request.form['num3'])     operation = request.form['operation']     operation1 = request.form['operation1']         if operation == 'add' and operation1 == 'add':         result = num1 + num2 + num3         operation_symbol = '+'         operation_symbol_1 = '+'           elif operation == 'add' and operation1 == 'subtract':         result = num1 + num2 - num3         operation_symbol = '+'         operation_symbol_1 = '-'         elif operation == 'subtract' and operation1 == 'add':         result = num1 + num2 - num3         operation_symbol = '-'         operation_symbol_1 = '+'         elif operation == 'subtract' and operation1 == 'subtract':         result = num1 - num2 - num3                             operation_symbol = '-'         operation_symbol_1 = '-'       elif operation == 'multiply' and operation1 == 'multiply':         result = num1 * num2 * num3         operation_symbol = '*'         operation_symbol_1 = '*'     elif operation == 'multiply' and operation1 == 'divide':                   result = num1 * num2 / num3         operation_symbol = '*'         operation_symbol_1 = '/'     elif operation == 'divide' and operation1 == 'multiply':                   result = num1 / num2 * num3         operation_symbol = '/'         operation_symbol_1 = '*'     elif operation == 'divide' and operation1 == 'divide':         if num2 == 0:             return "Error: Division by zero!"         result = num1 / num2 / num3               operation_symbol = '/'         operation_symbol_1 = '/'     return render_template('result.html', num1=num1, num2=num2, num3=num3, operation_symbol=operation_symbol, operation_symbol_1=operation_symbol_1, result=result) if __name__ == '__main__':     app.run(debug=True)

    • No alternative text description for this image
    • No alternative text description for this image
    • No alternative text description for this image
    • No alternative text description for this image
  • View organization page for Force Operation X, graphic

    5 followers

    View profile for Manokaran Kittusamy, B.E., MBA ,, graphic

    Engineer - Technology at Verticurl

    Hello #Everyone, below am shared the details of different types of exceptions in #python. Kindly check. Sample #Program: import random def test_fun():  x=random.randint(0,2)  #x=0  if x == 0:      raise ValueError("it's value error")  elif x == 1:   raise TypeError("It's type error")  else:   return "done" def sum(a):  b = a+10  print("Value of b = ", b) try:  check = test_fun()  #sum(1) except ValueError as v:     print(v)  print("A value error occured") except TypeError:  print("A type error occured") except SyntaxError as s:  print(s)  print("A syntax error occurred") except NameError:  print("A name error occurred") except IndexError:  print("A index error occured") except KeyError:  print("A key error occured") except AttributeError:  print("A Attribute error occured") except IOError:  print("A IO error occured") except ZeroDivisionError:  print("A ZeroDivision error occured") except ImportError:  print("A Import error occured")   else:  print(f"the test result is:{check}") finally:  print("it's always run") ------------------------------------------------------------------- what is? SyntaxError: This exception is raised when the interpreter encounters a syntax error in the code, such as a misspelled keyword, a missing colon, or an unbalanced parenthesis. TypeError: This exception is raised when an operation or function is applied to an object of the wrong type, such as adding a string to an integer. NameError: This exception is raised when a variable or function name is not found in the current scope. IndexError: This exception is raised when an index is out of range for a list, tuple, or other sequence types. KeyError: This exception is raised when a key is not found in a dictionary. ValueError: This exception is raised when a function or method is called with an invalid argument or input, such as trying to convert a string to an integer when the string does not represent a valid integer. AttributeError: This exception is raised when an attribute or method is not found on an object, such as trying to access a non-existent attribute of a class instance. IOError: This exception is raised when an I/O operation, such as reading or writing a file, fails due to an input/output error. ZeroDivisionError: This exception is raised when an attempt is made to divide a number by zero. ImportError: This exception is raised when an import statement fails to find or load a module. ------------------------------------------------------------------- #pythondeveloper #python #pythonprogramming #programming #pythonlearning #pythoncode #coding #pythonprogrammer #programmer #coder #developer #computerscience #javascript #programmers #codinglife #html #softwaredeveloper #programminglanguage #pythoncoding #java #machinelearning #pythonprogramminglanguage #datascience #programmerlife #pythonprojects #developerlife #datastructure #code #programminglife #pythonlove

    • No alternative text description for this image

Similar pages