You are on page 1of 3

Your First Python Program

Now we will learn Python programming basics and create a command line application. We will accomplish it in
by completing each task in the project:

 Task 1: Introduction
 Task 2: Terminal
 Task 3: Python Interpreter
 Task 4: Variables
 Task 5: Text Editor
 Task 6: Functions
 Task 7: Lists and Tuples
 Task 8: Conditional Statements
 Task 9: The For Loop
 Task 10: User Input and the While Loop
 Task 11: The To-Do List Program Part 1
 Task 12: The To-Do List Program Part 2

While you are watching me work on each step, you will get a cloud desktop with all the required software pre-
installed. This will allow you to follow along the instructions to complete the above mentioned tasks. After all,
we learn best with active, hands-on learning

Ready to get started? Click on the button below to launch the project on Rhyme.

This course uses a third-party tool, Your First Python Program, to enhance your
learning experience. The tool will reference basic information like your name, email, and
Coursera ID.
age = 'John'

name = 90

print('My name is', name, 'and my age is', age)

numbers = [1, 2, 3, 4, 5]

numbers.pop()

numbers.remove(1)

print(numbers)
def print_square_value(numbers):

for number in numbers:

if number != 2:

squared = number * number

print(squared)

numbers = [1, 2, 3, 4]

print_square_value(numbers)

You might also like