ljbaumer


Joined 8 months ago
Homeworks submitted:
Homework comments:
1
0

About Me

No description provided.

Classes

MIT OpenCourseWare 6.00 Introduction to Computer Science and Programming

Class status: Established
Role: Student
. 5% complete

Submitted Assignments

MIT OpenCourseWare 6.00 Introduction to Computer Science and Programming: Lesson 1, HW 1

First, it asks the user for their first name. Second, it asks them for their last name and after that it prints their first name and last name in that order.

#assignment 0
#asks user for their first name and last name
firstname = raw_input('Please enter your first name: ')
lastname = raw_input('Please enter your last name: ')
print firstname, lastname
		

ljbaumer 8 months ago