DDSRY Profile picture
Writer | Podcaster | Artist | https://t.co/nte1YYeVLW | https://t.co/PuKqansKh6
Learning in Public - Coding - DataSci Profile picture 1 subscribed
Jun 20, 2021 5 tweets 2 min read
When you're in bad phases or days, everyone (surrounding peoples and relatives) will say you to do this and do that, and you also get trolled.

But, when you're in good phases or days, everyone one will be like "SHUT UP" no one will talk you and tell you to do something to get 👇 more in life, but the reality is they ask you for HELP.

But I want to know that why someone told previously that you are not going to be good or have a good life.

Let me tell you.

If you're in bad phases or days, your GOOD days 💯% will come.

And

If you are in Good Phases👇
Aug 20, 2020 4 tweets 4 min read
5 Reasons to Learn Python:

1. Easy to Learn.😀

2. Versatility:

▪ You can use it for, 🌐Web Developement, 📊Data Science, 💻Machine Learning, Computer 🔎Vision, 📈Data Analysis and Visualization, Scripting, 💻Gaming and in Robotics.

3. High Salaary.💰

4. Scalability: ▪ It is extremely 👊powerful that you can build real-world🌐 applications.

5. Job Market:

▪ High📈 Demand and 📉Low Supply of Python🐍 Developer.💻

▪ Python is number 1 Programming language for ML and AI.

▪ By Learning Python you are actually investing💰 in your future.
Jun 25, 2020 4 tweets 3 min read
What is type conversion in Python?

▪ Type conversion refers to the conversion of one data type into another.

int() – converts any data type into integer type

float() – converts any data type into float type

ord() – converts characters into integer

#Python
#programming hex() – converts integers to hexadecimal

oct() – converts integer to octal

tuple() – This function is used to convert to a tuple.

set() – This function returns the type after converting to set.

list() – This function is used to convert any data type to a list type.

#Python