Python Basics
Objective: Write and run Python scripts.
-
Variables,
print(), input. -
Arithmetic operations.
Code Example:
name = input("What's your name? ") print("Hello, " + name)
Exercise:
-
Write a script that adds two numbers.
Objective: Write and run Python scripts.
Variables, print(), input.
Arithmetic operations.
Code Example:
name = input("What's your name? ") print("Hello, " + name)
Exercise:
Write a script that adds two numbers.