jeff_farkas


Joined 1 year 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
#++++++++++++++++++++++++++++++++++++++++++++
# Problem Set 0 
# Name: Jeff Farkas
# Date/Time Submitted: 10/19/2010 Time: 7:00 AM
# Time for assignment: 5 Minutes.
# This program is made  to allow a user to input their last 
# and first name and then print them out in the
# the following order: First Name and Last Name.
#++++++++++++++++++++++++++++++++++++++++++++

last_name = raw_input('Enter your last name: ')
first_name = raw_input('Enter your first name: ')
space = ' '
print  'Your name is: ' + first_name + space + last_name

jeff_farkas 1 year ago