This media is not supported in your browser
VIEW IN TELEGRAM
በPython, data visualization moduleኦች በእነዚህ ቁልፍ ደረጃዎች ይሰራሉ።
1. Import the required library – Common libraries include matplotlib, seaborn, and plotly.
2. Prepare the data – Load or create a dataset.
3. Create the plot – Use functions to generate a visualization.
4. Customize the visualization – Add labels, noscripts, colors, or styles.
5. Display the visualization – Render the plot.
This process applies to various chart types like bar plots, histograms, and scatter plots, depending on the library and data used.
to be cont'd
#DataVisualization
#Data
@python_pioneers
1. Import the required library – Common libraries include matplotlib, seaborn, and plotly.
import matplotlib.pyplot as plt
import seaborn as sns
2. Prepare the data – Load or create a dataset.
data = [10, 20, 15, 25, 30]
3. Create the plot – Use functions to generate a visualization.
plt.plot(data)
4. Customize the visualization – Add labels, noscripts, colors, or styles.
plt.noscript("Simple Line Plot")
plt.xlabel("X-axis")
plt.ylabel("Y-axis")5. Display the visualization – Render the plot.
plt.show()
This process applies to various chart types like bar plots, histograms, and scatter plots, depending on the library and data used.
to be cont'd
#DataVisualization
#Data
@python_pioneers
👍3⚡1
👍1
♟️ Chess Facts You Should Know! ♟️
🔹 There are 400 possible positions after each player's first move. After two moves, this number jumps to 72,084!
🔹 The longest possible game is 5,949 moves without a draw by the 50-move rule.
🔹 The "en passant" rule allows a pawn to capture an opponent's pawn that has just moved two squares forward.
🔹 The fastest checkmate is called Fool’s Mate and happens in just 2 moves: 1. f3 e5 2. g4 Qh4#.
🔹 A pawn can promote to a queen, rook, bishop, or knight when reaching the 8th rank—choosing a knight can deliver a surprise check!
#Chess
@python_pioneers
🔹 There are 400 possible positions after each player's first move. After two moves, this number jumps to 72,084!
🔹 The longest possible game is 5,949 moves without a draw by the 50-move rule.
🔹 The "en passant" rule allows a pawn to capture an opponent's pawn that has just moved two squares forward.
🔹 The fastest checkmate is called Fool’s Mate and happens in just 2 moves: 1. f3 e5 2. g4 Qh4#.
🔹 A pawn can promote to a queen, rook, bishop, or knight when reaching the 8th rank—choosing a knight can deliver a surprise check!
#Chess
@python_pioneers
👍1
በPython, data visualization moduleኦች በእነዚህ ቁልፍ ደረጃዎች ይሰራሉ።
1. Import the required library – Common libraries include matplotlib, seaborn, and plotly.
2. Prepare the data – Load or create a dataset.
3. Create the plot – Use functions to generate a visualization.
4. Customize the visualization – Add labels, noscripts, colors, or styles.
5. Display the visualization – Render the plot.
This process applies to various chart types like bar plots, histograms, and scatter plots, depending on the library and data used.
#DataVisualization
#Data
@python_pioneers
1. Import the required library – Common libraries include matplotlib, seaborn, and plotly.
import matplotlib.pyplot as plt
import seaborn as sns
2. Prepare the data – Load or create a dataset.
data = [10, 20, 15, 25, 30]
3. Create the plot – Use functions to generate a visualization.
plt.plot(data)
4. Customize the visualization – Add labels, noscripts, colors, or styles.
plt.noscript("Simple Line Plot")
plt.xlabel("X-axis")
plt.ylabel("Y-axis")5. Display the visualization – Render the plot.
plt.show()
This process applies to various chart types like bar plots, histograms, and scatter plots, depending on the library and data used.
#DataVisualization
#Data
@python_pioneers
💯1
Forwarded from Dagmawi Babi
This is for everyone that is looking to start or progress through their programming journey!
If you are looking to start your programming journey, or have started it but don't have a clear goal or path on where and how you should move forward; I have compiled and made a really simple and straight forward path for you!
No, you don't need a mentor. You just need a computer and access to internet, that's all.
I have posted all the guides, resources and advices all in my community. Now you don't have to go around asking every dev or community to be your mentor or to give you a roadmap or something. This'll help exponentially.
Ofcourse my advices and plan will not fit all of you. You just have to use and apply the ones that apply to your scenario and go from there.
Here are the roadmaps and resources
• https://news.1rj.ru/str/dagmawibabichat/37512/54629
Share it with your friends and community, for people who want to get into programming and for people who want to progress.
I hope it helps.🌷
#Resources #Roadmap #Programming
@Dagmawi_Babi
If you are looking to start your programming journey, or have started it but don't have a clear goal or path on where and how you should move forward; I have compiled and made a really simple and straight forward path for you!
No, you don't need a mentor. You just need a computer and access to internet, that's all.
I have posted all the guides, resources and advices all in my community. Now you don't have to go around asking every dev or community to be your mentor or to give you a roadmap or something. This'll help exponentially.
Ofcourse my advices and plan will not fit all of you. You just have to use and apply the ones that apply to your scenario and go from there.
Here are the roadmaps and resources
• https://news.1rj.ru/str/dagmawibabichat/37512/54629
Share it with your friends and community, for people who want to get into programming and for people who want to progress.
I hope it helps.
#Resources #Roadmap #Programming
@Dagmawi_Babi
Please open Telegram to view this post
VIEW IN TELEGRAM
👍3⚡1
Media is too big
VIEW IN TELEGRAM
Can You Guess the Number?
Just built a Random Number Guessing Game! Test your luck and see how many attempts it takes to find the secret number, you can even set the number of guesses as much as you need.
How it Works:
- The game generates a random number.
- You guess the number, and the game provides hints (higher/lower).
- It counts the number of guesses until you get it right.
A fun way to practice Python and improve logical thinking.
Watch the demo & try it yourself!
#Coding #GameDev #Programming #FunWithCode
@python_pioneers
Just built a Random Number Guessing Game! Test your luck and see how many attempts it takes to find the secret number, you can even set the number of guesses as much as you need.
How it Works:
- The game generates a random number.
- You guess the number, and the game provides hints (higher/lower).
- It counts the number of guesses until you get it right.
A fun way to practice Python and improve logical thinking.
Watch the demo & try it yourself!
#Coding #GameDev #Programming #FunWithCode
@python_pioneers
Python Pioneers: A Beginner's Guide 🇪🇹
Can You Guess the Number? Just built a Random Number Guessing Game! Test your luck and see how many attempts it takes to find the secret number, you can even set the number of guesses as much as you need. How it Works: - The game generates a random number.…
guess.py
988 B
Here is the code for our Number Guessing Game Program. You can run it using Python interpreter.
#Guess
@python_pioneers
#Guess
@python_pioneers
❤1👍1
Do You Want Us to Start a YouTube Channel for Python Pioneers?
Anonymous Poll
60%
Yes! It’s definitely needed!
15%
Yes, I would love that!
10%
Maybe, I’ll consider it later
15%
No, I don’t think I need it
The commonly heard Ethio Telecom low balance notification message, ‘ያሎት ቀሪ ሂሳብ አነስተኛ ነው እባክዎን ሂሳቦን ይምሉ,’ was recorded using the voice of ህሊና ተፈራ (Helina Tefera).
#Fact
@python_pioneers
#Fact
@python_pioneers
👍1