dalinda


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 assignment MIT 6.00 OpenCourseWare Introduction to programming, python based.

# Problem Set 0
# Name: Arnualdas Dalinda
# Collaborators: None
# Time: 0:15

# Ask last and first name
LastName = raw_input('Please enter your last name: ')
FirstName = raw_input('Please enter your first name: ')
# Output First and Last name
print FirstName, LastName

# I also write this for python 3.x
#
##LastName = input('Please enter your last name: ')
##FirstName = input('Please enter your first name: ')
##print(FirstName, ' ', LastName)

dalinda 8 months ago