Variables

Lesson 5
Author : Afrixi
Last Updated : October, 2017


Python - Programming Language
This course covers the basics of programming in Python. Work your way through the videos/articles and I'll teach you everything you need to know to start your programming journey!

print("There once was a man named " + character_name) print("He was " + character_age + " years old") print("He really liked the name " + character_name) print("But didn't like being " + character_age)

You can also print variables using a ',' print("My variable is", character_name)

print("There once was a man named " + character_name) print("He was " + character_age + " years old")

character_age = "80"

print("He really liked the name " + character_name) print("But didn't like being " + character_age)