Learn
HTML
CSS
PHP and MySQL
Python
Flask
Physics
Chemistry
Educational Blog
and
more...
TEA Educational Blog
Happy Independence Nigeria
O Nigeria, land of hope and grace,
With skies so bright, and hearts that race,
From the Niger's flow to the Borno sands,
We rise as one, with willing hands.
Our green land thrives, our rivers sing,
A future bright, with hope we bring.
Though trials come, we stand as strong,
In unity, where we belong.
From Zik to Awolowo’s fight,
Our freedom won, our future bright.
We raise our flags, our voices soar,
For independence, forever more.
The strength of youth, the wisdom old,
Our stories rich, yet to be told.
We march in pride, as one we stand,
A blessed and beloved land.
Happy Independence, oh dear Nigeria,
A beacon of hope, ever so clear.
Together we'll build, hand in hand,
A prosperous, united, and glorious land.
...
[Continue Reading]
Happy Independence Nigeria
Good Question
I was called Iron Lady for being a successful woman – Prof Osofisan (Professor of Computer science)
New Black studies curriculum to launch in NYC schools this fall
Education is not a scam; it is immensely rewarding
More Blog
Lessons
Course: Python Programming
Number of topics: 11
Category: Programming
Installing Python on your computer or device is the first step to learning Python. Follow this step to install. It is very easy to do this.
1. Visit Python official website. python.org and local the "Downloads" link OR better still visit the Downloads page straight with this web address https://www.python.org/downloads/
2. Click link for the operating system that you are using e.g Windows to see the python releases for Windows OR visit go straight to the page using the web address https://www.python.org/downloads/windows/
3. I will advise you download Py...
[Continue Reading]
Course: Flask: Python Web Development
Number of topics: 16
Category: Programming
Looking at the previous lesson and the ones related to the
School Grading System you must have noticed some annoying repitition of code in the templates html files
Students Record
School Grading System
Students |
Subjects |
Instructor |
Score Sheet
See Student Record
Back to home
....
[Continue Reading]
Course: Python Programming
Number of topics: 11
Category: Programming
Loop can be logically and creatively use to make programming more useful and interactive.
Example 1
You are ask to write a program to calculate the average score of n number of students.
Because the number of students is unknown you can ask the user to input the number of students you want to process there score, and use this to execute the loop to compute the average.
#prompt use to enter number
n=int(input("Enter the number of students you want to compute their result "))
totalscore=0
averagescore=0
count=1
while count<=n:
...
[Continue Reading]
Course: GST 102
Number of topics: 17
Category: Business
PHILOSOPHY AND ITS RELEVANCE TO SOCIETY... [Continue Reading]
Course: Physics
Number of topics: 17
Category: Science
This is one of the series on Electricity: for high school.... [Continue Reading]
Course: Python Programming
Number of topics: 11
Category: Programming
As you program you will later realise that you may need to store or access data for example a product or student information for later use. This is when it becomes necessary to have a separate file to hold such information.
Again Python is populate use for data analysis and many data specialist and programmers now use it to handle a variety of data.
CSV format
CSV (Comma-Separated Values) is one of the most popular formats for storing and exchanging tabular data.
The structure of a CSV file just as its name is just a plain text file that us... [Continue Reading]
Course: Web development using PHP and MySQL
Number of topics: 27
Category: Programming
Create a simple form in the index.php page with the code:
index.php
Testing PHP
Note:
The method="post", this indicates the method we want the form to use in submitting its data, therefore we have to use the PHP $_POST special variable to access its data likewise.
[Continue Reading]
Course: Web development using PHP and MySQL
Number of topics: 27
Category: Programming
In programming, when we are discussing functions we are either referring to the built-in function that comes with the language or the User defined or custom function that the programer would like to create..
Built-in functions
PHP has lots of built-in functions some of which we have seen, for example the echo or print, date, array, mail, math, msqli, strings etc.
Date function
display the current time and date
pi() math function
[Continue Reading]
See all courses