Python Basics

This tutorial covers Python basics for AI SDET testing.

Variables

x = 10
name = "AI Tester"

Loops

for i in range(5):
    print(i)

Functions

def greet(name):
    print("Hello", name)

greet("AI SDET")