Student Solution

-->

"Education is the most powerful weapon which you can use to change the world”
– Nelson Mandela

1 University

1 Course

2 Subjects

Assignment-01-Variables

Assignment-01-Variables

Q Assignment 1 ? Submit Task2.py and Task5.py from the lab assignments. ? When you define any variables, the name of each variable MUST starts with your initial. ? For example, assuming that your initial is AB, use “AB_age” or “ABage” if you need to define a variable for “age.” ? This naming requirement will be applied throughout this course.

View Related Questions

Solution Preview

# -*- coding: utf-8 -*- """ Created on Fri Feb 5 19:01:56 2021 @author: wcrawford """ firstName = input("Enter your first name:") lastName = input("Enter your last name:") print(firstName + " " + lastName)