#python program
Explore tagged Tumblr posts
tpointtechblogs · 20 days ago
Text
The Ultimate List of Python Programs for Job Seekers
visit the blog: https://shorturl.at/UmtB8
visit more blog:
https://tpointtechblog.hashnode.dev/ultimate-list-of-java-programs-for-interviews
https://dev.to/tpointtechblog/free-photoshop-tutorial-learn-photoshop-from-scratch-4e0k
https://www.patreon.com/user?u=169347449
https://www.linkedin.com/pulse/react-native-beginners-tutorial-tips-best-practices-udhav-khera-k3wzc
https://shorturl.at/1QMyL
https://shorturl.at/C8tKo
0 notes
rahul-tech · 10 months ago
Text
What is the significance of the watchdog library in Python?
The Watchdog Python Library actively monitors file system events as a versatile Python library and command-line utility. This powerful tool enables developers to closely observe various changes within files and directories. For instance, whether it’s tracking file creation, modification, deletion, or other alterations, Watchdog captures these events in real time. Moreover, one of the Watchdog…
0 notes
uncodemytraininginstitute · 2 years ago
Text
This comprehensive guide covers an extensive resource that equips readers with the essential knowledge and skills needed to excel in the field of data science using the Python programming language. Continue reading...
1 note · View note
frozenemus · 2 years ago
Text
Thank god my therapist doesn't know anything about programming because she'd insist I harbor some manner of deep-seated hatred for myself since I keep fucking trying to program a GUI in python
1 note · View note
sondercrow · 2 years ago
Text
So python is apparently unable to handle if-statement with more than 2996 elif’s, which is fair, however, it’s really limiting my implentation of an is_even function
Tumblr media
Any ideas on how I can work around this?
5K notes · View notes
paracosmicka · 4 months ago
Text
Does anyone wanna look at pictures of calculators with me
259 notes · View notes
codingquill · 2 years ago
Text
Essentials You Need to Become a Web Developer
HTML, CSS, and JavaScript Mastery
Text Editor/Integrated Development Environment (IDE): Popular choices include Visual Studio Code, Sublime Text.
Version Control/Git: Platforms like GitHub, GitLab, and Bitbucket allow you to track changes, collaborate with others, and contribute to open-source projects.
Responsive Web Design Skills: Learn CSS frameworks like Bootstrap or Flexbox and master media queries
Understanding of Web Browsers: Familiarize yourself with browser developer tools for debugging and testing your code.
Front-End Frameworks: for example : React, Angular, or Vue.js are powerful tools for building dynamic and interactive web applications.
Back-End Development Skills: Understanding server-side programming languages (e.g., Node.js, Python, Ruby , php) and databases (e.g., MySQL, MongoDB)
Web Hosting and Deployment Knowledge: Platforms like Heroku, Vercel , Netlify, or AWS can help simplify this process.
Basic DevOps and CI/CD Understanding
Soft Skills and Problem-Solving: Effective communication, teamwork, and problem-solving skills
Confidence in Yourself: Confidence is a powerful asset. Believe in your abilities, and don't be afraid to take on challenging projects. The more you trust yourself, the more you'll be able to tackle complex coding tasks and overcome obstacles with determination.
2K notes · View notes
punstars · 2 years ago
Text
Tumblr media
1K notes · View notes
abyssal-wonders · 11 days ago
Text
Tumblr media
68 notes · View notes
study-diaries · 1 month ago
Text
Introduction To HTML
[Note: You need a text editor to do this. You can use Notepad or Text Edit. But it's so much better to download VS Code / Visual Studio Code. Save it with an extension of .html]
HTML stands for Hyper Text Markup Language
It is used to create webpages/websites.
It has a bunch of tags within angular brackets <....>
There are opening and closing tags for every element.
Opening tags look like this <......>
Closing tags look like this
The HTML code is within HTML tags. ( // code)
Here's the basic HTML code:
<!DOCTYPE html> <html> <head> <title> My First Webpage </title> </head> <body> <h1> Hello World </h1> <p> Sometimes even I have no idea <br> what in the world I am doing </p> </body> </html>
Line By Line Explanation :
<!DOCTYPE html> : Tells the browser it's an HTML document.
<html> </html> : All code resides inside these brackets.
<head> </head> : The tags within these don't appear on the webpage. It provides the information about the webpage.
<title> </title> : The title of webpage (It's not seen on the webpage. It will be seen on the address bar)
<body> </body> : Everything that appears on the webpage lies within these tags.
<h1> </h1> : It's basically a heading tag. It's the biggest heading.
Heading Tags are from <h1> to <h6>. H1 are the biggest. H6 are the smallest.
<p> </p> : This is the paragraph tag and everything that you want to write goes between this.
<br> : This is used for line breaks. There is no closing tag for this.
-------
Now, we'll cover some <Meta> tags.
Meta tags = Notes to the browser and search engines.
They don’t appear on the page.
They reside within the head tag
<head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="description" content="Website Description"> <meta name="Author" content="Your Name"> <meta name="keywords" content="Websites Keywords"> </head>
Line By Line Explanation:
<meta charset="UTF-8"> : Makes sure all letters, symbols, and emojis show correctly.
<meta name="viewport" content="width=device-width, initial-scale=1.0"> : Makes your site look good on phones and tablets.
<meta name="description" content="Website Description"> : Describes your page to Google and helps people find it.
<meta name="author" content="Your Name"> : Says who created the page.
<meta name="keywords" content="Website's Keywords"> : Adds a few words to help search engines understand your topic.
_____
This is my first post in this topic. I'll be focusing on the practical side more than the actual theory, really. You will just have some short bullet points for most of these posts. The first 10 posts would be fully HTML. I'll continue with CSS later. And by 20th post, we'll build the first website. So, I hope it will be helpful :)
If I keep a coding post spree for like 2 weeks, would anyone be interested? o-o
98 notes · View notes
rahul-tech · 1 year ago
Text
Streamlining Social Integration: Harnessing the Power of 'pip install facebook-sdk' in Python Development
[et_pb_section fb_built=”1″ theme_builder_area=”post_content” _builder_version=”4.24.2″ _module_preset=”default”][et_pb_row _builder_version=”4.21.0″ _module_preset=”default” width=”96%” global_colors_info=”{}” theme_builder_area=”post_content”][et_pb_column type=”4_4″ _builder_version=”4.21.0″ _module_preset=”default” global_colors_info=”{}” theme_builder_area=”post_content”][et_pb_text…
Tumblr media
View On WordPress
0 notes
endythebendy · 1 year ago
Text
"So you know how C is procedural, Haskell is functional, and Java is object-oriented? You may ask: 'what about Python?'
Well, Python is bullshit-oriented."
My friend, teaching me Python.
315 notes · View notes
tamino1230 · 4 months ago
Text
Tumblr media
Just did a very easy normal Addition Function hah (⌐■_■)
Please some improvement ideas ;)
132 notes · View notes
lordamaranthus · 2 months ago
Text
“So, dear reader, we have come to the end of my trials. You have followed me through five volumes of adventures and six months of pain and suffering.”
Tumblr media
“—Know that I am smiling on you. We are friends now. Call on me. I will be—…”
[click for better quality]
While I didn’t draw this with the prompts of this years event in mind, it does fit very nicely [in my eyes] for todays prompt: Something wrong, something amiss
This is a kind of homage to the very first ‘big’ drawing I ever did, both for this fandom and in general
Here is a link to it, though it is. Old. So—
Too Colorful
105 notes · View notes
zooplekochi · 2 years ago
Text
Tumblr media
They call it "Cost optimization to navigate crises"
676 notes · View notes
mshanna28 · 2 months ago
Text
I have a headcanon: Voldemort actually studied "Muggle sciences" like chemistry, physics, biology, and... drumroll computer science! Just imagine Voldemort with nails typing on a computer but hiding it even from his Death Eaters-
and how do you think which programming language he uses? Python
Tumblr media
Picture just to see he copes with "Hello world":
Tumblr media
monitors of the 2000s should have been drawn in a different way, but that's not the point
74 notes · View notes