Tag: Python

Python

How to Get Python List all Files in Directory with Extension?

Write a program to get the Python list all files in directory with extension? Using listdir() from OS module.

Code

Second Largest/Smallest Number in Array in C/C++, Java and Python

Write a program to find the second smallest number in array in C/C++, Java and Python. Second largest element in list.

Code

Find the Smallest and Largest Number in Array in C/C++, Java and Python

Write a program to find the smallest and largest number in the array. Code written in C/C++, Java and Python.

Python

Sudoku Solver in Python w/ Backtracking | Explained with Example

How to write sudoku solver in Python with and without backtracking (brute force)? Algorithm explained with example.

Neural Network

Experimenting Neural Networks from scratch in Python

[Complete code] Neural Networks in Python. Experimenting from the scratch. What is Neural network? How to implement it in Python?

Code

[Solved] Program to Find Pairs that have Desired Sum in Java, Python

Write a program to count and find pairs that have desired sum from the given array. Program solved in Java, C/C++ and Python.

Jobs

[Plan of Action] Basic Skills Required to get a Job in Python

What are the basic skills required to get a job in Python? Complete action plan. How to find the matching job requirement?

Books

Refer These 6 Python Books to Master Programming | Beginners to Advanced

What are the best Python books to learn for beginners and experienced? Learn Python hard way. Practical Python Books for experienced or non programmers.

Python

[Solved] C408 Unnecessary (dict/list/tuple) call – rewrite as a literal

C408 Unnecessary (dict/list/tuple) call – rewrite as a literal. How to solve flake8 Python dictionary literal issue. Rewrite “dict([])” as “{}”.