Lesson Overview
In this lesson, you will learn about variables and the different data types, and how to use them to make slightly more complex programs
Activities for Practice
- Create a program that takes user input for their age and name, then prints a message that includes both pieces of information.
- Write a program that asks the user for the length and width of a rectangle, calculates the area and perimeter, and prints the results.
- Write a program that asks the user for the temperature in celcius and converts it into farenheit. °F = (9/5 × °C) + 32.
Contact us at codewithoutwords@gmail.com if you have any issues or need any guidance.
Lesson Transcript
Welcome to the first lesson in our Python programming course. In this lesson, we will cover the basics of Python, including how to write your first program, understand Python syntax, and perform basic operations...