
Shreyansh Jain
@DevTalesShrey
Followers
105
Following
176
Media
100
Statuses
267
Software engineer | IIT Roorkee grad π | Passionate about coding | Blogger π | Networking enthusiast π | Python | C and C++ | JavaScript | Git | React | Node
Bangalore, India
Joined August 2023
Learn Python - Day 13.Topic: Swapping variables in python. # Assuming we have two variables, a and b.a = 1.b = 2. # To swap the values of a and b.a, b = b, a . # Now, a is 2 and b is 1. #SoftwareDevelopment .#SoftwareEngineering .#100DaysOfCode .#buildinpublic #Python
2
3
29
Pretty Printing in python:. pprint is a python module that provides a capability to "pretty-print" arbitrary Python data structures in a formatted and more readable way. Thread: π§΅. #Python #pythonprogramming.
1
0
1
(5/5): . Thanks for reading. If you like my post, do like π©·, follow @DevTalesShrey and re-tweet β»οΈ. See you in the next post π€.
0
0
0
Spelling check using TextBlob (NLP). #Python #NLP .#AI #MachineLearning . TextBlob provides a simple API for common NLP tasks such as POS tagging, phrase extraction and more. One of the features of it is to correct "spelling mistakes" in a given text. Threadπ§΅π½.
1
0
1
String Formatting Operator %. #Python #pythonprogramming . The string formatting operator % allows you to format strings with specific formatting instructions, including inserting values into a string.
0
0
2