diff --git a/basics/variables.md b/basics/variables.md index 4b9c25b..d3426b5 100644 --- a/basics/variables.md +++ b/basics/variables.md @@ -16,7 +16,7 @@ Variables are easy to understand. They simply **point to values**. Let's draw a diagram of these variables. -![Variable diagram](../images/variables1.png) +![](https://raw.githubusercontent.com/shubham8550/python-tutorial/master/images/variables1.png) We can also change the value of a variable after setting it. @@ -29,7 +29,7 @@ We can also change the value of a variable after setting it. So now our diagram looks like this: -![Variable diagram](../images/variables2.png) +![](https://raw.githubusercontent.com/shubham8550/python-tutorial/master/images/variables2.png) Setting a variable to another variable gets the value of the other variable and sets the first variable to point to that value. @@ -299,14 +299,6 @@ what you are doing. We'll learn more about it later. `NoneType object` they mean None. *** + +If you have trouble with this tutorial please report us. -If you have trouble with this tutorial please [tell me about -it](../contact-me.md) and I'll make this tutorial better. If you -like this tutorial, please [give it a -star](../README.md#how-can-i-thank-you-for-writing-and-sharing-this-tutorial). - -You may use this tutorial freely at your own risk. See -[LICENSE](../LICENSE). - -[Previous](the-way-of-the-program.md) | [Next](using-functions.md) | -[List of contents](../README.md#basics)