garg


Joined 2 years 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

Bash Scripting

Class status: Established
Role: Student
. 0% complete

Structure and Interpretation of Computer Programs

Class status: Established
Role: Student
. 0% complete

Submitted Assignments

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

1. Asks the user to enter his/her last name. 2. Asks the user to enter his/her first name. *3. Prints out the user’s first and last names in that order.

# Problem Set 0
# Name: garg

first_name = raw_input('Enter your last name:\n**')
last_name = raw_input('Enter your first name:\n**')

print first_name
print last_name

garg 2 years ago