These links are powered by SJURL , my personal URL Shortener. If these links do not seem to be working, click here and make sure it says Up. If not, ping me below and I'll try to figure out why my site isn't up.
Yay my first post that came onto the 'hot' section of Repl Talk! omg yay this is beyond expectations, 130 upvotes! Can we get to 140?
Please make sure you are signed into repl.it or else it gives an error
The Easy Way to Learn Python
With this easy to use Python tutorial, you can learn python the easy way
This Python tutorial covers -
IDE Comparison (Level0)
Your first hello world! (Level1, Print)
String vs. Int vs. Float (Level2)
Variables (Level3)
Conditionals, with if, elif, and else (Level4)
User Inputs (Level5)
Lists (Level6)
Functions (Level7)
2D Lists (Level 8)
Loops (Level 9 & 10)
Dictionaries (Level 11)
Common Modules (Level 12)
Coming Up
I plan to add the following topics later on
Also Supports -
ACCOUNTS
These accounts are secure, and only you can access your password. Only you can delete your account, and only you can login with it.
EDIT: I investigated a bit with the account system, and if u don't have a repl.it account/aren't signed in when using this, then ur account may be deleted if ur browser cookies/cache are cleared.
Accounts help save your progress so you don't have to redo hours of tutorial again.
Different colors to differentiate tutorial and code.
In this tutorial, all text isn't white; And if you get deeper inside, you'll learn how to color your text too!
Opportunities for you to try out the code you're learning!
Throughout the tutorial, you will get Opportunities to type some code, and have it verified by the PythonTutorBot.
Contributing
While I cannot allow anyone to directly edit my tutorial, you can contribute by making a pull request on the GitHub Repo. (Find it here)
Updates
LISTS GOT ADDED!
Functions are here!
Welcome, 2D Lists!
Loops just got added!
Dictionaries are here
The manual level picker now also shows what each level has, instead of just the number.
Common Modules
Bonus lesson, level0, ide comparison, added
Tell me if you have more you would like to see! Try it out here Btw I made this whole thing in 3 days
Note: This whole tutorial was built on my favorite IDE, repl.it
Update: A while back, I finally set up my own URL shortener with tracking statistics and changed the link to my shortened one, and the results were amazing! The link got 14 views in an hour alone! thanks for your support everyone!
@angelinalau yeah sure! so its a conditional with the variable, num. num is equal to 5+5 in integer value, but we want python to return an action if 5+5 is 10. Since the variable is predefined, use
if num
then use 2 equal signs, because that means you are checking a value, (single means u are setting one)
if num ==
We want to know if it equals 10
if num == 10:
use a Colon to define next steps. Now click enter, and type 4 spaces (recommended to use tab but I cant use tab In the console) We have to tab or 4 spaces because the code that is indented is inside the if, all code not indented into the if statement is run no matter what.
IMPORTANT LINKS
Comparison -
These links are powered by SJURL , my personal URL Shortener. If these links do not seem to be working, click here and make sure it says Up. If not, ping me below and I'll try to figure out why my site isn't up.
Please make sure you are signed into repl.it or else it gives an error
The Easy Way to Learn Python
With this easy to use Python tutorial, you can learn python the easy way
This Python tutorial covers -
Coming Up
I plan to add the following topics later on
Also Supports -
Contributing
While I cannot allow anyone to directly edit my tutorial, you can contribute by making a pull request on the GitHub Repo. (Find it here)
Updates
LISTS GOT ADDED!
Functions are here!
Welcome, 2D Lists!
Loops just got added!
Dictionaries are here
The manual level picker now also shows what each level has, instead of just the number.
Common Modules
Bonus lesson, level0, ide comparison, added
Tell me if you have more you would like to see!
Try it out here
Btw I made this whole thing in 3 days
Update:
A while back, I finally set up my own URL shortener with tracking statistics and changed the link to my shortened one, and the results were amazing! The link got 14 views in an hour alone! thanks for your support everyone!
May I ask how to do the num 5+5 one?
@angelinalau yeah sure! so its a conditional with the variable,
num
.num
is equal to 5+5 in integer value, but we want python to return an action if 5+5 is 10. Since the variable is predefined, usethen use 2 equal signs, because that means you are checking a value, (single means u are setting one)
We want to know if it equals 10
use a Colon to define next steps.
Now click enter, and type 4 spaces (recommended to use tab but I cant use tab In the console) We have to tab or 4 spaces because the code that is indented is inside the if, all code not indented into the
if statement
is run no matter what.the action is
Did that help?