Uncategorized

Bit Stuffing

Hello Friends, In this tutorial we are going to study the topic of “Bit Stuffing” in Java. So a simple question that arises in our mind is – What does Bit Stuffing means ? In simple words when we communicate with other systems then there is a transmission of data. Sometimes, the system may not differentiate between …

Bit Stuffing Read More »

Asyncio in Python.

Asyncio Asyncio is a library for writing single-threaded concurrent code using coroutines, multiplexing I/O access over sockets and other resources, and implementing network clients and servers. import asyncio async def my_coroutine(): print(“Starting coroutine”) await asyncio.sleep(1) print(“Coroutine finished”) async def main(): print(“Starting main”) await my_coroutine() print(“Main finished”) asyncio.run(main()) Output Starting main Starting coroutine Coroutine finished Main …

Asyncio in Python. Read More »

How to do web development in Python ?

Basic of Web Development in Python : If you’re interested in building web applications. You will work with Django and Flask frameworks. Django is more capable and has many built-in capabilities for larger applications; Flask is lightweight and suitable for smaller applications. #Flask Example from flask import Flask app = Flask(__name__) @app.route(‘/’) def hello_codespeedy(): return …

How to do web development in Python ? Read More »

How To Perform String Concatenation With Primitive Data Type Values in Java

       String Concatenation In Java   Hello Friends, In this tutorial we are going to perform String Concatenation on  Primitive Data Type. “String are nothing but the sequence of characters”. String str = “Sankalp”;   Some Basic Prerequisite about String Concatenation –   Basically, string concatenation means joining many strings together to formed a combined …

How To Perform String Concatenation With Primitive Data Type Values in Java Read More »

Scroll to Top