Ch1 Introductions
Ch1 Introductions
CSE 1010
Introduction
zyBooks Chapter 1
Today's Objectives
• Introductions
• Overview of Course
• Understanding of Course Objectives/Expectations
• Have Access to Necessary Resources
– Husky CT
– zyBooks
• Name (Kem-sick)
• Educational Goals
– Current place in your academic history
– Major
• Computer Science Achievement
• Syllabus
• Schedule
• zyBooks
• Variable Assignment:
– Syntax: name = ‘Chris’
– What goes on: The value ‘Chris’ is assigned to name
– Reading left-to-right: name is being assigned the value ‘Chris’
– The value of name can be changed: name = ‘John’
• We write programs to run the same process on different valued
inputs
28 August 2023 CSE 1010 5
Section 1.2 Programming Using
Python
• An interactive interpreter is a program that allows the user to execute one
line of code at a time.
• Code is a common word for the textual representation of a program
• A line is a row of text.