7 Nov 2022 Xavier Rigoulet 10 Useful Tips for Writing Python Scripts Would you like some helpful tips for Python scripts? Read on to get some advice from a pro! In this article, I will give you some Python tips and tricks alongside script examples to help you make the best out of Python. First, let's define what a Python script is. A Python script is a set of instructions written in Python to ask the computer to perform some tasks. Read more 10 Oct 2022 Xavier Rigoulet Is Python Still Worth Learning? Is Python worth learning in 2022? This is a valid question, and we’ll answer it in this article. Let's start with some important data. According to the latest Stack Overflow Survey, Python ranks high among the most popular technologies. It is also high up among the loved and highest among the wanted technologies. The IEEE Spectrum ranking also points to Python as the most popular language in 2022. Why is Python so popular as a programming language? Read more 22 Aug 2022 Xavier Rigoulet How to Decrement a Python for Loop Do you know how to decrement in Python? It’s easy! You can do it with a simple for loop, and I’ll show you how. Unlike other programming languages (such as C++) Python has no decrement operator (i.e. similar to the -- in C++). In Python, we state the beginning and the end of the iteration with the number of steps in between. If you need a refresher on the Python for loop, read Kateryna's article on writing forloops in Python, then come back here. Read more 15 Aug 2022 Xavier Rigoulet Free Python Course Will Help You Find Out If Programming Is For You Have you heard about software engineers making half a million US dollars annually? Do you want to learn to program but do not know if you are cut out for it? Our free Python course can help you find out if programming is for you. But first, let's define programming. Programming is the action of providing a set of instructions to the computer to make it perform a task. A pre-defined set of instructions is called an algorithm. Read more 22 Jul 2022 Xavier Rigoulet Your First Programming Language: Python vs. C++ You’ve decided to learn computer programming! It’s a great idea, but which programming language should you learn? This article will compare two of today’s most popular languages, Python and C++. In this article, I will help you decide which programming language to learn by comparing two of the most popular: Python vs. C++, and if you do not believe me, the TIOBE index ranks the popularity of programming languages. As you can see, Python is the most popular; C++ comes in fourth, behind C and Java. Read more 13 Jul 2022 Xavier Rigoulet How to Improve Your Python Skills In this article, I’ll show you how you can improve your Python skills. Discover what you can do better, faster, and more effectively as you learn Python like never before! You’re all set! You started to learn Python, and your Python home office is ready. But you wonder what to do after completing your first Python course. Or maybe you want to improve your Python skills and increase your market value. Read more 13 Jun 2022 Xavier Rigoulet Where Can I Find Good Python List Exercises? Do you feel like you forgot everything you ever knew about Python lists? Wish you could find good practice Python list exercises? This article will share our top picks. Here is the thing… Practice makes perfect! This is especially true when talking about programming. It’s not enough to watch some videos without putting your newly-acquired skills into practice. Python can belearned quickly, but you still need to solidify your knowledge and practice your coding skills. Read more 13 May 2022 Xavier Rigoulet What Are Generators in Python? Have you ever dealt with datasets so large that your computer's memory couldn’t handle them? Have you ever wondered if there could be a way to interrupt a function in the middle before resuming it? Here is where Python generators come into the picture. Python generators are a way to create custom iterators. You can read more about iterators here. Before we continue, if you are not familiar with Python terminology, check our articles about Python terms for beginners and more Python terms. Read more 12 Apr 2022 Xavier Rigoulet How to Write “Greater Than or Equal To” in Python Comparison operators are an important part of Python programming. In this article, let’s explore how to use the greater than or equal to comparison in Python. Many programming beginners wonder how to write “greater than or equal to” in Python. Well, to write greater than or equal to in Python, you need to use the >= comparison operator. It will return a Boolean value – either True or False. Read more 31 Mar 2022 Xavier Rigoulet How to Sort a List Alphabetically in Python What if you have a list of strings (text items) and you need to sort them alphabetically? In this article, we’ll show you how to sort a list in Python. A sorting algorithm puts elements of a list into a particular order. They help reduce the complexity of a problem and can even optimize other algorithms. Because of its complexity, sorting is one of the most important problems in computer science. Read more «« « 1 2 3 4 » »»