dapakman


Joined 3 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

''' Created on Feb 18, 2012

@author: dapakman User input last name and first name, print out first name and last name"

last_name = raw_input('What is your last name?')
first_name = raw_input('What is your first name?')
print('Hello', first_name, ' ', last_name)

dapakman 3 months ago