Master the Future of Technology
Join thousands of learners building real-world skills with our project-based curriculum. From fundamentals to advanced concepts, accelerate your journey in software development.
def check_sentiment(text):
positive_words = ['love', 'great', 'amazing', 'happy']
negative_words = ['hate', 'terrible', 'awful', 'sad']
text = text.lower()
positive_count = sum(1 for word in positive_words if word in text)
negative_count = sum(1 for word in negative_words if word in text)
if positive_count > negative_count:
return "😊 Positive!"
elif negative_count > positive_count:
return "😢 Negative"
else:
return "😐 Neutral"
# Test our sentiment checker
message = "I love this amazing course!"
result = check_sentiment(message)
print(f"Sentiment: {result}")
Start Your Journey
Comprehensive, project-based courses designed for real-world success
C++ for Beginners
Master one of the most powerful programming languages. Build games, applications, and systems from the ground up.
Start LearningPython & AI
Dive into AI and machine learning. Build intelligent applications that solve real-world problems.
Full-Stack Development
Build complete web applications. Master frontend, backend, and everything in between.
Why Choose Project Tech Academy?
Project-Based Learning
Build a portfolio of real-world projects that showcase your skills to employers.
Expert Mentorship
Get guidance from industry experts who have worked at top tech companies.
Career Ready
Receive dedicated career coaching, from resume building to interview preparation.
Ready to Transform Your Future?
Join thousands of learners who have already taken the first step towards their tech career.
Start Now