Python with J

An essential part of coding is creating and assigning variables. Here, you get familiarized with the conventions to be followed while naming variables and how their assignment works in Python.

We learn how to work with numbers and arithmetic operators in Python.

We learn to deal with alphanumeric quantities and what we can do with them in Python.

Lists are one of the most important data types in Python and have a variety of uses. Here, we learn the basics of lists and the various operations related to them.

Here we learn about the if-elif-else keywords and apply them on numbers, strings and lists.

We talk about looping and learn the syntax of the 'for' loop in Python

We dive into the while loop and learn to use range in for loops.

We learn about the Break statement that is used to terminate loops and save memory space.

We learn about continue statement and how to take user input.

We delve into functions and parameters.

We discuss the "return" keyword used in Python.