Meetup, Villupuram GLUG

Python with AgenticAI Training Session 2026 – Session 6

VGLUG is dedicated to empowering rural college students through technology education.
As part of this initiative, we conduct weekly training sessions on Python With AgenticAI.

  • Python & AgenticAI – Arts(Team 1) &  Arts(Team 2) & Arts (Team 3)
  • Python & AgenticAI – Engg(Team 1) &  Engg(Team 2) & Engg(Team 3)

These sessions focus on practical knowledge of Python, AgenticAI, free and open-source tools, and also include social awareness and community engagement activities.

Python With AgenticAI Training Session – 6’th  Week Recap

Session Taken : Kowsalya, Sathish, Dilip, Deepak, Kanimozhi , Muthuram, Prathap, Murugan, Kesavapriya

Session 1: Python Control Statement
Session 1: Advance git commands


Date: 06-09-2026 (Sunday)
Time: 9:30 AM to 1:00 PM

Minutes of the Meeting

Python With AgenticAI – (Arts Team1,Team2, Team3) & (Engg Team1,Team2, Team3)

Session 1:Python Control Statement :

What are Control Statements?

Control statements are used to control the flow of a Python program.

Normally, Python executes code from top to bottom. Control statements help us to:

  • Make decisions
  • Repeat tasks
  • Stop or skip a task

Main Types of Control Statements in Python:

  • Conditional Statements
  • Looping Statements
  • Jump Statements

1.Conditional Statements

  • if
  • if-else
  • if-elif-else
  • nested if

2.Looping Statements

  • for
  • while

3. Jump Statements

  • break
  • continue
  • pass
TypePurposeExamples
ConditionalMake decisionsif, if-else, elif
LoopingRepeat codefor, while
JumpStop, skip, or do nothingbreak, continue, pass

if Statement:

Used when we want to execute code only when a condition is True.

age = 20
if age >= 18:
print("Eligible to Vote")

if-else Statement

Used when there are two possible outcomes.

mark = 35
if mark >= 40:
print("Pass")
else:
print("Fail")

if-elif-else Statement

Used when there are multiple conditions.

mark = 75
if mark >= 90:
print("Grade A")
elif mark >= 60:
print("Grade B")
elif mark >= 40:
print("Pass")
else:
print("Fail")

Nested if Statement:

An if statement inside another if statement is called a nested if.

age = 20
if age >= 18:
if age >= 21:
print("Eligible for both conditions")
else:
print("Eligible for the first condition only")
else:
print("Not eligible")
Loop TypePurposeExampleOutput
for loopRepeats code for a given range or sequencefor i in range(1, 6):  print(i)1 2 3 4 5
while loopRepeats code as long as a condition is Truei = 1while i <= 5:  print(i)  i = i + 11 2 3 4 5
Jump StatementPurposeExampleOutput
breakStops the loop immediatelyfor i in range(1, 6):  if i == 3:    break  print(i)1 2
continueSkips the current iteration and continues with the next onefor i in range(1, 6):  if i == 3:    continue  print(i)1 2 4 5
passDoes nothing; used as a placeholderfor i in range(1, 6):  if i == 3:    pass  print(i)1 2 3 4 5

Session 2: Git Recall & Advanced Git Commands

Working Directory

git add

Staging Area

git commit

Local Repository

git push

GitHub

TopicWhat to Recall
GitVersion control system
GitHubPlatform for hosting Git repositories
RepositoryProject folder tracked by Git
git initCreate a Git repository
git statusCheck current changes
git addAdd changes to staging
git commitSave changes to Git history
git pushUpload changes to GitHub
git pullGet latest changes from GitHub
git cloneCopy a remote repository
git logView commit history
CommandPurposeSimple Example
git branchView branchesgit branch
git branch new-featureCreate a branchgit branch new-feature
git switch new-featureMove to a branchgit switch new-feature
git switch -c featureCreate and switch to a branchgit switch -c feature
git mergeCombine branchesgit merge feature
git stashTemporarily save changesgit stash
git stash popBring back stashed changesgit stash pop
git diffView changesgit diff
git log --onelineShow compact commit historygit log --oneline
git remote -vView remote repository URLgit remote -v
git fetchGet remote updates without merginggit fetch
git resetUndo changes/commitsgit reset --soft HEAD~1

Special thanks to Kowsalya, Sathish, Dilip, Deepak, Kanimozhi , Muthuram, Prathap, Murugan, Kesavapriya for their support and contribution in making the Python Control Statement
& Advance git commands
session successful.

Leave a comment