python3

Creating Django Rest API Part-1
Today we will create a basic Rest API in Django. Suppose you have a project with products app. In this…
pip is an install manager in python. So, before installation pip, I think you have already installed python. Assume your…
Login to cpanel -> SOFTWARE -> Setup python App 2. Now you will see the below window and click on…
Create a file named tools.py now wrtie the below code and save it in lib directory under *\Python\Python38-32\Lib 3. Now…
পৃথিবী সূর্যের চার পাশে ঘুরতে কয়দিন সময় লাগে? প্রায় ৩৬৫ দিন ৫ ঘন্টা ৪৮ মিনিট ৪৭ সেকেন্ড। কিন্তু আমরা যদি…
১।পাইথন হচ্ছে একটি হাই লেভেল প্রোগ্রামিং ল্যাঙ্গুয়েজ।এখন এর দেখবাল করেন পাইথন সফটওয়্যার ফাউনডেশান (PSF) ২। এটি ডেভেলপড করেন Guido van…
Numpy ; Used for scientific computing Matplotlib ; Used for data visualization Scikit-learn ; Used for machine learning
ভেরিয়েবল বা চলকঃ অন্যান্য প্রোগ্রামিং ল্যাংগুয়েজ এর মত পাইথনে ভেরিয়েবল ডিক্লেয়ার করতে হয় না। ভেরিয়েবল এ যে মান দেয়া হয় সেটার উপর…
Types of Data Structure Liner Type Array Linked List Stack: LIFO (Last In First Out)  Queue:  FIFO (First In First Out)…
from collections import deque queue = deque([10, 20, 30]) queue.append(40) # apppend data at the right side queue.append(50) # apppend…