- Видео 250
- Просмотров 217 260
Rajdeep Dar Pathshala
Индия
Добавлен 19 май 2021
Learn Python programming language in Bangla. Visit our playlists for more such videos.
বাংলায় পাইথন শিখুন, নিখুঁতভাবে খুঁটিনাটি বিষয় গুলো জানুন | আমাদের প্লেলিস্ট গুলো দেখুন আরো ভালোকরে সবকিছু জানতে |
My name is Rajdeep Bhadra
Google cloud platform certified.
Rajdeep Dar Pathshala
A channel where you can learn programming Python in detail. From Basic to intermediate to advance. C programming tutorial and coding related videos are available here.
Job updates and placement news along with that tips and tricks of programming and coding is available here.
এমন একটি চ্যানেল যেখানে আপনি সি, পাইথন, জাভা এবং আরও অনেক কিছুর মতো প্রোগ্রামিং ভাষা শিখতে পারেন। মন্তব্য বিভাগে লিখে আপনার মূল্যবান পরামর্শ শেয়ার করুন। ধারাবাহিক ভিডিও লেকচার পোস্ট করা হবে যেখানে আপনি বাংলায় প্রোগ্রামিং ভাষা শিখতে পারেন। এই চ্যানেলের উদ্দেশ্যটি হ'ল বাংলায় কোডিং সম্পর্কিত যতটা সম্ভব তথ্য সরবরাহ করা। দয়া করে আমার ভিডিওগুলি পছন্দ করুন এবং আমার ইউটিউব চ্যানেলটি সাবস্ক্রাইব করুন।
বাংলায় পাইথন শিখুন, নিখুঁতভাবে খুঁটিনাটি বিষয় গুলো জানুন | আমাদের প্লেলিস্ট গুলো দেখুন আরো ভালোকরে সবকিছু জানতে |
My name is Rajdeep Bhadra
Google cloud platform certified.
Rajdeep Dar Pathshala
A channel where you can learn programming Python in detail. From Basic to intermediate to advance. C programming tutorial and coding related videos are available here.
Job updates and placement news along with that tips and tricks of programming and coding is available here.
এমন একটি চ্যানেল যেখানে আপনি সি, পাইথন, জাভা এবং আরও অনেক কিছুর মতো প্রোগ্রামিং ভাষা শিখতে পারেন। মন্তব্য বিভাগে লিখে আপনার মূল্যবান পরামর্শ শেয়ার করুন। ধারাবাহিক ভিডিও লেকচার পোস্ট করা হবে যেখানে আপনি বাংলায় প্রোগ্রামিং ভাষা শিখতে পারেন। এই চ্যানেলের উদ্দেশ্যটি হ'ল বাংলায় কোডিং সম্পর্কিত যতটা সম্ভব তথ্য সরবরাহ করা। দয়া করে আমার ভিডিওগুলি পছন্দ করুন এবং আমার ইউটিউব চ্যানেলটি সাবস্ক্রাইব করুন।
Bayes' Theorem | Data Analytics Statistics | Part - 4 | By Kaushiki Goswami
#dataanalytics #statistics #coding #skilldevelopment #motivation
Просмотров: 73
Видео
Random Variables | Data Analytics Statistics | Part - 3 | By Kaushiki Goswami
Просмотров 34Месяц назад
#dataanalytics #statistics #coding #skilldevelopment #motivation
Conditional Probability | Data Analytics Statistics | Part- 2 | By Kaushiki Goswami
Просмотров 63Месяц назад
#dataanalytics #motivation #skilldevelopment #coding #statistics
Basic Concepts of Probability | Data Analytics Statistics | Part-1| By Kaushiki Goswami
Просмотров 115Месяц назад
#dataanalytics #coding #skilldevelopment #motivation
Lag - Lead & Window Function | MYSQL Topic | Full tutorial video By Rajdeep Da | Part - VII
Просмотров 76Месяц назад
#mysql #education #mysqldatabase #motivation #coding #skilldevelopment Check out this 👇 Queries ⬇️ create database mysql_tutorial_int; use mysql_tutorial_int; select * from sales_data; CREATE TABLE sales_data ( month INT, sales INT ); INSERT INTO sales_data (month, sales) VALUES (1, 100), (2, 150), (3, 120), (4, 180); select * from sales_data; truncate table sales_data; Syntax LAG(column_name, ...
Savepoint, Commit, Rollback | MYSQL_TUTORIAL | Full explanation by Rajdeep Da | Part - VI
Просмотров 52Месяц назад
#education #mysql #mysqldatabase #motivation #coding #skilldevelopment Check out this 👇 Queries ⬇️ CREATE TABLE inventory_table ( p_id INT PRIMARY KEY, p_name VARCHAR(100) NOT NULL, p_price DECIMAL(10, 2) NOT NULL ); drop table inventory_table; INSERT INTO inventory_table (p_id, p_name, p_price) VALUES (1, 'Basmati Rice 1kg', 120.00); INSERT INTO inventory_table (p_id, p_name, p_price) VALUES (...
14 - String Functions | MYSQL | Detailed explanation by Rajdeep Da | Part - V
Просмотров 71Месяц назад
#motivation #coding #skilldevelopment #education #mysql #mysqldatabase Check out this 👇 Queries ⬇️ CREATE TABLE strings_example ( id INT PRIMARY KEY, text VARCHAR(100) ); INSERT INTO strings_example (id, text) VALUES (1, 'hello world'); INSERT INTO strings_example (id, text) VALUES (2, 'mysql functions'); SELECT UPPER(text) AS uppercase_text FROM strings_example; The UPPER() function converts a...
Stored Procedure | MYSQL | Full explanation by Rajdeep Da | Part - IV
Просмотров 74Месяц назад
#motivation #coding #skilldevelopment #education #mysql #mysqldatabase Check out this 👇 Queries ⬇️ CREATE TABLE employees ( employee_id INT PRIMARY KEY, name VARCHAR(50), department VARCHAR(50), bonus INT ); INSERT INTO employees (employee_id, name, department, bonus) VALUES (1, 'Alice', 'HR', 1000); INSERT INTO employees (employee_id, name, department, bonus) VALUES (2, 'Bob', 'Finance', NULL)...
Case - When - Then - Else - End | MYSQL | Tutorial video by Rajdeep Da | Part - III
Просмотров 62Месяц назад
#motivation #coding #skilldevelopment #mysqldatabase #mysql #education Check out this 👇 Queries ⬇️ Create the students table CREATE TABLE students ( student_id INT PRIMARY KEY, name VARCHAR(50), score INT ); Insert data into the students table INSERT INTO students (student_id, name, score) VALUES (1, 'Alice', 85); INSERT INTO students (student_id, name, score) VALUES (2, 'Bob', 70); INSERT INTO...
IF NULL() Function | MYSQL | বাংলায় Full explanation with Theory +Practical by Rajdeep Da | Part -II
Просмотров 96Месяц назад
#mysqldatabase #mysql #motivation #coding #skilldevelopment #programming Check out this 👇 Quaries ⬇️ Create the employees table CREATE TABLE employees ( employee_id INT PRIMARY KEY, name VARCHAR(50), bonus INT ); Insert data into the employees table INSERT INTO employees (employee_id, name, bonus) VALUES (1, 'Alice', 1000); INSERT INTO employees (employee_id, name, bonus) VALUES (2, 'Bob', NULL...
Foreign Key Constraint | MYSQL | বাংলায় সব explanation, Theory & Practical by Rajdeep Da | Part - I
Просмотров 120Месяц назад
#motivation #coding #skilldevelopment #mysqldatabase #mysql #foreignkeyconstraint Check out this 👇 Queries ⬇️ create database mysql_tutorial_int; use mysql_tutorial_int; CREATE TABLE products ( product_id INT PRIMARY KEY, product_name VARCHAR(50) ); CREATE TABLE inventory ( inventory_id INT PRIMARY KEY AUTO_INCREMENT, product_id INT, stock_level INT, last_updated DATE, FOREIGN KEY (product_id) ...
Data Analytics Statistics | Variance, Standard deviation, Mean absolute deviation | Part - II
Просмотров 712 месяца назад
#motivation #powerbi #coding #dataanalytics #skilldevelopment #mathametics #education
Data Analytics Statistics | Variance, Standard deviation, Mean absolute deviation | Part - I
Просмотров 672 месяца назад
#motivation #powerbi #dataanalytics #mathametics #skilldevelopment
Data Analytics Statistics | Range | Quartile | Interquartile Range | By Kaushiki Goswami | Part- II
Просмотров 882 месяца назад
#coding #motivation #powerbi #dataanalytics #mathametics
Data Analytics Statistics | Mean | Median | Mode | Full explanation by Kaushiki Goswami | Part- I
Просмотров 1592 месяца назад
#motivation #dataanalytics #coding #programming #powerbi #education
Power BI Assignment submission in Google Form | Video in full detail by Rajdeep Da
Просмотров 1562 месяца назад
Power BI Assignment submission in Google Form | Video in full detail by Rajdeep Da
মজার ছলে শেখো for Loop in Python | Live explanation by Rajdeep Da with example
Просмотров 1923 месяца назад
মজার ছলে শেখো for Loop in Python | Live explanation by Rajdeep Da with example
Map & Filter function | Full explanation by Rajdeep Da
Просмотров 954 месяца назад
Map & Filter function | Full explanation by Rajdeep Da
Pointers in C Language. | Full tutorial by Rajdeep Da
Просмотров 614 месяца назад
Pointers in C Language. | Full tutorial by Rajdeep Da
Mock Interview By Soutrick Chatterjee | Student :- Prabahan Nath | রাজদীপ দার পাঠশালা
Просмотров 974 месяца назад
Mock Interview By Soutrick Chatterjee | Student :- Prabahan Nath | রাজদীপ দার পাঠশালা
Decorators in Python | Full guidance from Rajdeep Da | রাজদীপ দার স্টাইলে সহজে কোডিং
Просмотров 1024 месяца назад
Decorators in Python | Full guidance from Rajdeep Da | রাজদীপ দার স্টাইলে সহজে কোডিং
MYSQL Workbench Installation video | Full tutorial by Rajdeep Da
Просмотров 1454 месяца назад
MYSQL Workbench Installation video | Full tutorial by Rajdeep Da
হাতে কলমে Function ( ) | Full explanation by Rajdeep Da
Просмотров 2965 месяцев назад
হাতে কলমে Function ( ) | Full explanation by Rajdeep Da
How to Connect Google Sheet & MYSQL Database with PowerBi | Full tutorial by Rajdeep Da
Просмотров 955 месяцев назад
How to Connect Google Sheet & MYSQL Database with PowerBi | Full tutorial by Rajdeep Da
Podcast Talk with Dr. Puspita Bhattacharya, IIT KGP | Topic : Social Media vs Child Brain | Ep-1
Просмотров 3235 месяцев назад
Podcast Talk with Dr. Puspita Bhattacharya, IIT KGP | Topic : Social Media vs Child Brain | Ep-1
Google Sheet To MYSQL Connectivity Through Python | Full explanation by Rajdeep Da
Просмотров 1085 месяцев назад
Google Sheet To MYSQL Connectivity Through Python | Full explanation by Rajdeep Da
Curd Operation With Flask Microweb Framework Of Python | Full tutorial by Rajdeep Da
Просмотров 445 месяцев назад
Curd Operation With Flask Microweb Framework Of Python | Full tutorial by Rajdeep Da
How to Publish Report in Power Bi Service | Full tutorial video by Rajdeep Da
Просмотров 2265 месяцев назад
How to Publish Report in Power Bi Service | Full tutorial video by Rajdeep Da
Data Type & Operators Explanation | Full guidance from Rajdeep Da | শিখব কোডিং মজার ছলে
Просмотров 936 месяцев назад
Data Type & Operators Explanation | Full guidance from Rajdeep Da | শিখব কোডিং মজার ছলে
Student Automatic Attendance Using PYTHON & MYSQL (with QR code scanner) | Full Demo Project
Просмотров 3376 месяцев назад
Student Automatic Attendance Using PYTHON & MYSQL (with QR code scanner) | Full Demo Project
👌
Ha dada interested
Allah bless you
Etate ki kono jhukir bapar ache eta fake na to 😢jodio ami video ta na dekhei bollam please bolben
❤
Data Structures and Algorithms with python er all dilen na r dada from bd.
Thanks 🙏🏽🙏🏽 sir
❤
Bangladesh thke dekchi sir
Download link ??
Kash jodi apnake 2012 tepetam dada khub upakar hoto
Good job
Sir error diya cha pip install hoya gacha but pyttsx3 error diya cha
Thanks dada ❤
❤❤❤
Good ❤
Take love from Bangladesh
Thanks dada
Thanks
Dada tomar mobile number ta pawa jabe, aami tomar kache python tution nite chai
Apnader advance excel ache?
Dada equal value ki vabe handle hbe, ekbar dekhale valo hoto
Continue the next videos on this topic.
Darun laglo sir.. Kichu bujhtam na ata dekhe bujhlam.. Sir purota koriye den
awesome! I loved your method ♥
Jibone onek teacher er kache poechi. But Rajdeep Sir is the Best teacher I came across.❤❤
❤❤❤❤❤
❤❤❤ 10 years age jodi tomake petam tahole amar life change hoea jeto... Khubi sundor dada❤❤❤
Pay pal er account ki.. Kivabe korbo ?
Thank u dada
Very easy way for remember
দাদ you are hero!
বাবা আমি তো তোমাকে খুজছিলাম কথায় বাড়ি কলকাতা , ? সঙ্গে সঙ্গে সাবস্ক্রাইব করে দিয়েছি
Data Analytics এর জন্য ভিডিও চাই
তোমার নেক্সট পাইথন ব্যাচ কবে স্টার্ট হচ্ছে?
September a notun batch suru hobe ☺️
ডিটেইলস কি এখানেই পাবো?
Website a nojor rakhben
Very Very Nice Explanation,Sir.Needs More Tutorial From You.
Good!
Apni ato sundor kore explain koren je jekono jinis amader bujhte khub sohoj hoy. Thank you sir apnake sir hisabe powar jonne.
Sir, ami power bi shikhte chai, kibhabe apnar kache class nebo
Rajdeep Dar Pathshala Facebook page follow korte theko, upcoming August batch er information asbe kichu diner modhe
@@RajdeepDarPathshala Sir ami non I.T means technical person, so is there any issues regarding learning for power bi.
Problems hobar kotha noy khub ekta..
9330538086 ei number a ping koro WhatsApp a
Sir apni zodi python problem solving er video niye asten tahole khub valo hoy!
data data sceience upor video chai.
Dada tomar mob no. E WhatsApp dakache na. Ki kore contact korbo?
Rajdeep Dar Pathshala Facebook page theke contact korte paro
দাদা এটার ওপর detail ভিডিও বানাও প্লিজ
Oshombhob shundor ekta podcast. Aro beshi bhalo lagchhe amar alma mater er ekjon ujjwal nokhtro Pushpita ma'am er valuable insights gulo. Aro onek podcast ashuk Rajdeep da erokom❤
Onek onek dhonyobad...bhalo theko..
Darun ❤😊
Code ta kobe explain korbe??..
Study material a dewa hobe
playlist anen flask er🎉
Tmi django Framework shikhao?.