Knowledge organisersIDE Skills
Execute + test programs.
Run your program using the IDE's Run button or F5. The output appears in the console/terminal. Test after every small change to catch errors early.
F5 to execute# Step 1: Write a small piece
name = input("Name: ")
print("Hello", name)
# Step 2: Run and test
# Step 3: Add more code
# Step 4: Run and test again