Python Tutorial

7 Articles 0 Followers


Python *args & **kwargs in depth

20 Apr 2020 3 minute read 6 comments Chanh Ha

Today, in Python explained, we are welcome to see one of the most mysterious things with a new Python learner. It is *args and **kwargs variables. We will figure out below questions: What is *args and **kwargs variables? When SHOULD and SHOULD NOT u...

Python Tips #1: Generator And Yield Keyword In 5 Minutes

19 Apr 2020 7 minute read 4 comments Chanh Ha

Python generator gives us a lazy iterator that is introduced in PEP255. We probably guess the idea from the “lazy” term. It means we are able to evaluate the piece of code whenever you want. It’s hard to understand clearly, right? For easier to under...

Sending Email with Python

18 Apr 2020 6 minute read 1 comment Chanh Ha

Sending email is a very common task in any system. You probably found this tutorial because you want to send emails using Python. In this tutorial, we will learn how to send emails with and without attachment/HTML contents in Python. After complete t...

Beginner's Guide To Using Pandas For Bitcoin Analysis: Part 1

12 Jan 2020 4 minute read 1 comment Michael_Brown

Hi, My name is Michael, I'm a physics graduate and now work as a software engineer. As I'm new to Bitcoin I thought it would be a good idea to do some exploratory data analysis using Pandas. This will be a beginner's guide to using Pandas, with this...

Sending Emails With Python 3.6+

11 Jan 2020 2 minute read 0 comments Luke9801

Sending automated emails can be a pain. There are many services online but chances are they charge large monthly fees and don't provide the level of control you're looking for. As always, in my opinion, it's best to just write your own. This way you...

Python 3: Lesson 4 - Variables & Data Types

18 Sep 2019 2 minute read 2 comments CN00b

Hi people, In Python, to declare something, you need to declare a variable. What is a variable? A variable is just a reserved memory location, to store a value; is created in the moment when you store the value to it. Comparative to other programming...

Python 3: Lesson 3 - Basic Syntax & Rules

18 Sep 2019 1 minute read 0 comments CN00b

Hi people, Before diving into Python programming, there are some rules that must be respected 100%, orelse you'll encounter a lot of errors, nerves, angry states and maybe, broken keyboards! :) The rules are simple and basic: 1. Indentation - Python...