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:
if,else,elif,for,while,break,continue,def,return,True,False,None,and,or,not, etc.
What is a Variable?
- A 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?
- A 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 duplicatesmy_list = [1, 2, 3]tuple– Ordered, unchangeable, allows duplicatesmy_tuple = (1, 2, 3)range– Sequence of numbersrange(5)gives 0 to 4
5. Set Types
set– Unordered, no duplicatesmy_set = {1, 2, 3}
6. Mapping Type
dict– Key-value pairsmy_dict = {"name": "VGLUG", "age": 18}
7. None Type
None– Represents no value or emptyx = 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
| Block | Use |
|---|---|
| Paragraph | Add normal text |
| Heading | Add titles/subtitles |
| Image | Add images |
| Video | Add videos |
| Button | Create clickable buttons |
| List | Create bullet/numbered lists |
| Gallery | Display multiple images |
| Table | Display information in rows and columns |
| Spacer | Add 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.
