Meetup, Villupuram GLUG

Python with AgenticAI Training Session 2026 – Session 3

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)

Date: 16-08-2026 (Sunday)
Time: 9:30 AM to 1:00 PM

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 – 3’rd  Week Recap

Session Taken : Kowsalya, Sathish, Dilip, Deepak, Selvabakyalakshmi , Vijayalakshmi, Prathap, Murugan, Kesavapriya, Kathirvel

Session 1: Keyword, variables, identifier,data types
Session 2: WordPress

Minutes of the Meeting

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

Session 1: Keyword, variables, identifier,data types

What is a Keyword?

  • Keywords are reserved words in Python that have special meaning.
  • They are part of the Python language syntax and cannot be used as variable names.
  • Python has 35+ keywords (as of Python 3.10), including:
  • ifelseelifforwhilebreakcontinuedefreturnTrueFalseNoneandornot, etc.

What is a Variable?

  • variable is a name given to a memory location to store data.
  • In Python, you don’t need to declare the data type of a variable — it is automatically detected.

Example:

name = “VGLUG” # String
age = 18 # Integer
height = 5.8 # Float
is_active = True # Boolean

identifier :

An identifier is a name given to a variable, function, class, or other element in a Python program.

Example:

vglug_name = “VGLUG”
vglug_location = “Villupuram”
vglug_year = 2013

print(vglug_name)
print(vglug_location)
print(vglug_year)

What is a Data Type?

  • data type defines the kind of value a variable holds.
  • Python has several built-in data types.

Types of Data Types in Python:

1. Numeric Types

  • int – Integer numbers (10, -5)
  • float – Decimal numbers (3.14, -2.5)
  • complex – Complex numbers (2 + 3j)

2. Text Type

  • str – String (“Hello”, ‘VGLUG’)

3. Boolean Type

  • bool – True or False

4. Sequence Types

  • list – Ordered, changeable, allows duplicates
    my_list = [1, 2, 3]
  • tuple – Ordered, unchangeable, allows duplicates
    my_tuple = (1, 2, 3)
  • range – Sequence of numbers
    range(5) gives 0 to 4

5. Set Types

  • set – Unordered, no duplicates
    my_set = {1, 2, 3}

6. Mapping Type

  • dict – Key-value pairs
    my_dict = {"name": "VGLUG", "age": 18}

7. None Type

  • None – Represents no value or empty
    x = None

Session 2: WordPress

  • WordPress is a free and open-source Content Management System (CMS) used to build and manage websites without needing to write code.
  • It was originally created for blogging but has grown into a platform for building all kinds of websites — blogs, e-commerce sites, portfolios, company websites, and more.

Why Learn WordPress?

  • No coding knowledge required to build powerful websites
  • Used by freelancers, NGOs, startups, and even governments
  • Great for portfolio projects and community websites
  • Perfect for non-technical students to contribute to open web

Career & Freelancing Opportunities:

  • Web development
  • Web design
  • Content management
  • Blogging
  • Digital marketing
  • Freelancing

Understand Plugins:

Students learn how additional website features are added through plugins.

  • Contact forms
  • SEO
  • Security
  • Backup
  • Analytics
BlockUse
ParagraphAdd normal text
HeadingAdd titles/subtitles
ImageAdd images
VideoAdd videos
ButtonCreate clickable buttons
ListCreate bullet/numbered lists
GalleryDisplay multiple images
TableDisplay information in rows and columns
SpacerAdd space between elements

The students actively participated in the session and were excited to see their own websites and first blog posts

Special thanks to Kowsalya, Sathish, Dilip, Deepak, Murugan, and Vijayalakshmi, Selvabakyalakshmi, Kesavapriya, Kathirvel for their support and contribution in making the Python & WordPress session successful.

Leave a comment