atomiccodelab


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 - MIT 6.00 OpenCourseWare

Python script asks for a first and last name then prints it out

# Problem Set 0
# Name: Atomic Code Lab
# Coded for Python 3.2
# Script asks for first and last name, then prints it out.

first_name = input("Please enter your first name.\n")
last_name = input("Please enter your last name.\n")

print(first_name + '\n' + last_name)

atomiccodelab 1 year ago