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")
This tutorial covers Python basics for AI SDET testing.
x = 10
name = "AI Tester"
for i in range(5):
print(i)
def greet(name):
print("Hello", name)
greet("AI SDET")