Skip to content

Hello User!

Sar Champagne Bielert edited this page Apr 8, 2024 · 3 revisions

Unit 1 Session A

U-nderstand

Understand what the interviewer is asking for by using test cases and questions about the problem.

P-lan

Plan the solution with appropriate visualizations and pseudocode.

General Idea: Write a function that takes a name as input and prints a greeting.

I-mplement

def greet_user(name):
	print("Hello " + name)
Clone this wiki locally