🐍 Python tip Want your script to notify you instantly when something happens? Instead of sending emails, you can use Pushbullet to send push notifications directly to your phone. It's a free API that is pretty easy to implement, and super useful. #python #raspberrypi
Patrick Fromaget (RaspberryTips)’s Post
More Relevant Posts
-
Most Python beginners get confused with this. == vs = They look similar. But they are completely different. = → Assignment operator Used to store a value Example: x = 10 == → Comparison operator Used to compare values Example: x == 10 One stores value. One checks value. Understanding this small difference can save you from many errors. 👉 Did you know this difference before? #python #BluJayTechnologies #SoftwareCoaching #Series
To view or add a comment, sign in
-
-
We missed qplot. So we built the Python equivalent for Altair. marimo turned out to be a surprisingly good environment for this project, because it was so small and visual. Implementation, tests, and docs are in one place. A build step strips out marimo before publishing, so users get plain Python. Video out now: https://lnkd.in/g47eh__f #python #openSource #altair #marimo
The Python IDE You Didn't Know Existed
https://www.youtube.com/
To view or add a comment, sign in
-
⏰ Python Script: Run Task Every 5 Sec ```python import time while True: print("Checking system...") time.sleep(5) ``` 💡 Automation foundation #Python
To view or add a comment, sign in
-
Built a simple Dice Roller using Python. As part of practicing Python basics, I created a small program that simulates rolling a dice. This program: • Generates a random number between 1 and 6 • Allows the user to roll multiple times • Uses loops and user input for interaction Through this project, I practiced: • Random module • Loops • Conditional statements • Handling user input It’s a simple project, but it helped me understand how randomness and control flow work together. Still learning and building step by step. #Python #BeginnerProject #DiceRoller #LearningInPublic #CodingJourney
To view or add a comment, sign in
-
-
Explore five beginner-friendly platforms that let you host Python apps for free, compare their limits, and pick the right one. https://lnkd.in/eiNhtfje
To view or add a comment, sign in
-
Constructor in Python __init__ ( )is the constructor method in python It has no return type It is used to initialize object variables when the object is created self refers to the current instance being initialized So, Dog("Buddy") Creates new object and automatically calls __init__ ( ) to assign "Buddy" to self.name
To view or add a comment, sign in
-
-
Fun python 1/100 Ever wondered why these two give different outputs ? Its called Singleton in python …………….. ids = {id(True) for i in range(500)} print(ids) ids = {id(int("100")) for i in range(500)} print(ids) ……………… What you think would be the answer to each loop?
To view or add a comment, sign in
-
Built a small Python script that auto-organizes files in a folder by type like images, videos, documents, code files and more. Nothing fancy, just a useful little tool I made for myself. Open-source if anyone wants it. GitHub: https://lnkd.in/gt8cEsYf #Python #Automation #OpenSource
To view or add a comment, sign in
-
This video discusses about basic features, syntax and working environment of Python language. Variable assignment and use of built-in functions like print, input, getcwd etc. have also been explained.
Introduction to Python in Hindi (Part 1): Basic Features, Syntax and Environment of Python
https://www.youtube.com/
To view or add a comment, sign in
Explore content categories
- Career
- Productivity
- Finance
- Soft Skills & Emotional Intelligence
- Project Management
- Education
- Technology
- Leadership
- Ecommerce
- User Experience
- Recruitment & HR
- Customer Experience
- Real Estate
- Marketing
- Sales
- Retail & Merchandising
- Science
- Supply Chain Management
- Future Of Work
- Consulting
- Writing
- Economics
- Artificial Intelligence
- Employee Experience
- Workplace Trends
- Fundraising
- Networking
- Corporate Social Responsibility
- Negotiation
- Communication
- Engineering
- Hospitality & Tourism
- Business Strategy
- Change Management
- Organizational Culture
- Design
- Innovation
- Event Planning
- Training & Development
I have a full chapter about this topic in my book, check it out here: https://raspberrytips.com/school/master-python/?coupon=LINKEDINTIP