Tech24 Deals Web Search

Search results

  1. Results from the Tech24 Deals Content Network
  2. 8-Puzzle solving using the A* algorithm using Python and PyGame

    www.codeproject.com/articles/365553/8-puzzle-solving-using-the-a-algorithm...

    In this article I will be showing you how to write an intelligent program that could solve 8-Puzzle automatically using the A* algorithm using Python and PyGame. Instead of a picture, we will use a pattern of numbers as shown in the figure, that is the final state. If you need to go through the A* algorithm theory or 8-Puzzle, just wiki it.

  3. A Simple Union of .NET Core and Python You’ll Love - CodeProject

    www.codeproject.com/Articles/5352648/Pythonnet-A-Simple-Union-of-NET-Core-and...

    Summary. In conclusion, using Python inside C# .NET Core application is easy and seamless. Python for .NET provides many methods for interacting with the Python interpreter and calling Python functions. By using these methods, you can leverage the power of Python to add new functionality in your C# .NET Core applications.

  4. Interfacing C++ and Python with the Python API - CodeProject

    www.codeproject.com/Articles/5365450/Interfacing-Cplusplus-and-Python-with-the...

    The Python API is a C/C++ programming toolset that enables developers to write code that integrates Python and C++. The first part of the article shows how the Python API makes it possible to access Python code in a C/C++ application. The second part explains how to code extension modules in C++ that can be imported into regular Python code.

  5. Embedding Python program in a C/C++ code - CodeProject

    www.codeproject.com/articles/820116/embedding-python-program-in-a-c-cplusplus-code

    How to Embed Python interpreter in your C/C++ code and dynamically change the code path of compiled native code.

  6. Using Python to Solve Computational Physics Problems

    www.codeproject.com/articles/1087025/using-python-to-solve-computational...

    This article demonstrates how to use Python to solve simple Laplace equation with Numpy library and Matplotlib to plot the solution of the equation. We'll also see that we can write less code and do more with Python.

  7. Python Code Generator Written in Python - CodeProject

    www.codeproject.com/articles/668223/python-code-generator-written-in-python

    Program make_python_prog.py is still in the latest code drop. I added two other programs, make_python_2_prog.py and make_python_3_prog.py. These write Python code for before version 2.5 versions of Python, and Python version 3 respectively.

  8. Write the Python code for the given question - CodeProject

    www.codeproject.com/Questions/5320942/Write-the-Python-code-for-the-given-question

    Write the Python code for the given question. Write a python program. we all provided with a excel sheet containing students name email id class joining time lefting time and duration of staying in class we have to change staying time to minute and in output list out the student who stayed in class less than 20 minutes separately and more than ...

  9. Configuration Files in Python - CodeProject

    www.codeproject.com/Articles/5319621/Configuration-Files-in-Python

    Here is a walkthrough of how to create a config file, add a configuration, update a configuration, delete a configuration, and read a configuration in a Python application.

  10. How can I write this pattern in Python? - CodeProject

    www.codeproject.com/Questions/5280898/How-can-I-write-this-pattern-in-Python

    Print the following pattern in python for the given number of rows.

  11. Python program to check special number or not. - CodeProject

    www.codeproject.com/Questions/5323161/Python-program-to-check-special-number...

    3 - 3 is the number of inputs user wants.It can be any input user wants. 19 - special number 11 - not a special number 5 - invalid number Explanation: Sum of digits = 5 + 9 = 14 Product of its digits = 5 x 9 = 45 Sum of the sum of digits and product of digits = 14 + 45 = 59 so, 59 is a special number.