Skip to content

Latest commit

 

History

History
39 lines (21 loc) · 797 Bytes

hello.md

File metadata and controls

39 lines (21 loc) · 797 Bytes

Lab 1

Back to Unit 1

Back to Syllabus

print("Python is fun!")

Print the following concatenations:

1.1

The letters of a word, each in its own string.


1.2

The individual words of a sentence. Place spaces between each word using separate strings.


1.3

The individual characters in a sentence, including spaces and punctuation. Each and every character should be in its own string.


1.4

Place comments explaining your code.


Back to Unit 1

Back to Syllabus