
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Found 10476 Articles for Python

13K+ Views
In this article, we will learn the best way to get stock data using Python. The yfinance Python library will be used to retrieve current and historical stock market price data from Yahoo Finance. Installation of Yahoo Finance(yfinance) One of the best platforms for acquiring Stock market data is Yahoo Finance. Just download the dataset from the Yahoo Finance website and access it using yfinance library and Python programming. You can install yfinance with the help of pip, all you have to do is open up command prompt and type the following command show in syntax: Syntax pip install yfinance ... Read More

297 Views
Introduction Machine Learning and Deep Learning are emerging technologies in the current industry scenario. There is a lot of work related to the industry and significantly impacting the present world business scenario. There are lots of people who are trying to enter this field and want to get benefited. To master one field, it is necessary to get updated on the latest research works and the things happening in the latest days. There is a lot of content available on the internet that can b useful for the same. Still, the approach to reading these machine learning papers should be ... Read More

2K+ Views
In this article, we will learn about the ** operator in Python. Double Star (**) is an Arithmetic Operator (like +, -, *, **, /, //, %) in Python. Power Operator is another name for it. What Order/Precedence Do Arithmetic Operators Take? The rules for both Arithmetic operators and Mathematical operators are same, which are as follows: exponential is run first, followed by multiplication and division, and then addition and subtraction. Following are the priority orders of arithmetic operators used in decreasing mode − () >> ** >> * >> / >> // >> % >> + >> - ... Read More

456 Views
In this article, we will learn about the enumerate() function and what are the uses of the "enumerate()" function in Python. What is enumerate() function? Python's enumerate() function accepts a data collection as a parameter and returns an enumerate object. The enumerate object is returned in key-value pair format. The key is the corresponding index of each item, and the value is the items. Syntax enumerate(iterable, start) Parameters iterable − the data collection that is passed in so that it can be returned as enumerate object is called iterable start − as the name suggests, the starting index ... Read More

243 Views
In this article, we will learn some projects that we can work on while learning Python. The finest skill you can master right now is unquestionably Python. Python is a flexible language with many potential uses. Python is a programming language that may be used for data research, machine learning, automation, and web development. Python may be used to work as a freelancer or for major software firms like Google. Very few languages offer both of these possibilities. The best way to learn is to create projects and practice solving issues, thus in this article, we've prepared a list of ... Read More

567 Views
In this article, we will learn different types of methods to write JSON in python. Conversion Rules When converting a Python object to JSON data, the dump() method follows the conversion rules listed below − Python JSON dict object list, tuple array str string int, float number True true False false None null Writing Dictionary into a JSON File The function of json.dump() is to arrange a Python object into a JSON formatted stream into the specified file. Syntax dump(obj, fp, *, ... Read More

876 Views
In this article, we will learn how to create a user interface using python. What is GUI? The term "Graphical User Interface" (or "GUI") refers to a set of visual elements that may be interacted with in computer software to display informational and interactive items. In response to human input, objects may change appearance characteristics like as color, size, and visibility. Graphical components like icons, cursors, and buttons can be enhanced with audio or visual effects like transparency to create a graphical user interface (GUI). If you want more people to use your platform, you need to make sure it ... Read More

334 Views
This article will teach us how to create some fascinating things in Python to make our work more interesting. Trading Bot While the economy, stock market, and cryptocurrencies are all suffering, many people are still profiting. Even though you shouldn't put all your money into a trading bot unless you know what you're doing, it's an interesting project to work on and learn from. AI Sports Betting Software Although the goal is to predict an outcome of events (much like the trading bot), the approach you choose to solve this challenge may be very different. As opposed to a trading ... Read More

6K+ Views
Python comes with a command line for managing user input and specific forms of data entering while Python applications are being executed. As a result, users can enter data and complete tasks otherwise that would be impossible. This also enables more complex tasks and increased program interaction. To communicate with computers and execute programs, one uses a command-line interface (CLI), and a text-based user interface (UI). Additional names for command-line interfaces include character user interfaces, console user interfaces, and command-line user interfaces. In this article, you will learn what the Python command-line interface (CLI) is and how to automate the ... Read More

875 Views
As the world entered the era of big data in recent decades, the demand for more effective and efficient data storage greatly expanded. Businesses that use big data invest a lot of time and energy in creating frameworks that can hold a lot of information. The storage of vast amounts of data was then made possible by the creation of frameworks like Hadoop. As the storage issue can be resolved by using the frameworks the next issue that comes is to process the data that had already been stored. The solution to processing the data and getting the useful information ... Read More