Learn PythonPythonPython GUIVideos

How To Read And Write Text Files in Cross Platform Apps

Tkinter is a beginner-friendly GUI toolkit for Python and can be used to create cross platform apps. It features a widget system that allows you to easily add elements to your application using a simple line of commands. In this video, John Elder of Codemy will teach us how to create a simple text editor using the Tkinter in Python. Although this project sounds complicated, it is surprisingly easy…
Read more
Learn PythonPythonPython GUIVideos

How To Make Python Automatically Detect App Vulnerabilities

Before you download an app (not just one written with a Python IDE) or run a file such as a CMD script, it is important to know that the file itself is secured and safe. We do not want any harmful viruses to ruin our computer or hack all our private information. To prevent this from happening, we often run virus scanners before running the file. It is also equally important to verify signatures…
Read more
Learn PythonPythonPython GUIVideos

This Is How To Deduplicate Records Using Python Software

In this Learn Python video presented by Flávio Juvenal da Silva Junior from digital PyCon, we will learn more about Record Deduplication and how exactly it works using Python Software. There will be instances where we encounter duplicate records in our datasets. While these duplicate records can be noticed easily by humans, computers may not be able to recognize them due to some variations. In…
Read more
Learn PythonPythonPython GUIVideos

This Is How To Implement Natural Language Processing

Ever wonder how Google Voice managed to recognize your speech and understand its context? How about those advertisements that you often see on search engines and social media platforms that are surprisingly relevant to your previous searches and inquiries? Well, these are just some of the successful implementations of the so-called Natural Language Processing or NLP. Adding NLP to your programs is…
Read more