Python Tutorial for Beginners - Full Course (with Notes & Practice Questions)

preview_player
Показать описание
You can start your Tech Placement/Internship journey with
Early bird offer till. 24th July, 9PM

----------------------------------------------------
PS : for those who asked, EMI option is available on payment page.

Eligibility for Sigm 4.0
- B.Tech students preparing for Tech Placement/Internships.
- start as early as possible, first 2 years are most important.
- M.Tech/MCA/BCA who are preparing for Tech Placements/Internships

Class Schedule :
- Mentioned in video & on website.
- Lectures will come on alternate days.
- Lecture Timings : 8PM
- Lecture duration : 1 - 1.5 Hour

----------------------------------------------------
---------------------------------------------------

📌 Details about the Delta 4.0 Batch :
- Start Date : 15th Feb, 2024
- Alternate day lectures (at 8PM)
- Duration - 5 months + Projects
- Each Class duration : 1.5 hour-2hour (alternate days)
- Access to the course is for 2 years
- Complete Frontend Development with HTML, CSS, Javascript & ReactJs
- Complete Backend Development (NodeJs, ExpressJs)
- Complete Database -( SQL & MongoDB)
- Complete MERN Stack (MongoDB, Express, React, Node)
- Real Life and Industry Grade Projects
- Live Mentorship Sessions
- 500+Topic Videos
- Certificate will be given on Completion.

TimeStamps
00:00:00 - Introduction
00:02:03 - Variables and Data Types
02:32:16 - Strings and conditional statements
03:27:13 - Lists and Tuples
04:08:03 - Dictionary and Set
05:01:26 - Loops
06:04:25 - Functions and Recursion
07:05:27 - File Input and Output
07:55:27 - OOPS Part 1
08:51:23 - OOPS Part 2
09:59:06 - Mini Project
Рекомендации по теме
Комментарии
Автор

Please note : (i) While learning overloading we have represented complex numbers’ real & img part as i & j to make the concept understandable for younger & non-math students. No need to worry if you don't understand complex numbers, it is just an example used to understand overloading❤️

(ii) Another Complete Tutorial, hope it helps you start your Python journey ❤
Other languages taught in same manner on this channel -
1. Python Complete Tutorial
2. C Language Complete Tutorial
3. HTML & CSS Complete Tutorial
4. JavaScript Complete Tutorial
5. Java Language with DSA Playlist
6. Git & GitHub Tutorial
and more are coming ❤

ApnaCollegeOfficial
Автор

Is it only me or Anyone else watching this video in July 2024 ?😅😅

vedikakathawale
Автор

Jiske pass laptop nahi hai to bhi video dekh raha hai wo like kare😂

Rapid_shorts_king
Автор

Day 1 : @1:00:00
Day 2 : @2:00:00
Day 3 : @3:27:13
Day 4 : @4:06:18
Day 5 : @5:01:24
Day 6 : @6:04:26
Day 7 : @7:05:27
Day 8 : @7:55:30
Day 9 : @8:51:24
Day 10 : @10:00:03
Day 11: Completed
Thank you!

nrk
Автор

@3:25:20
a = int( input("first num:"))
b = int( input("second num:"))
c = int( input("third num:"))
d = int( input("forth num:"))

if(a <= b and a <= c and a <= d ):
print("first num win ", a)
elif(b <= c and b <= d):
print("sceond is win ", b)
elif(c <= d):
print("third is win ", c)
else:
print("forth is big win ", d)

CODER
Автор

This is one of the best tutorial which covers all the important Python topics in one single video. Please create such videos for Python Libraries.

abhinavrastogi
Автор

Solution of home work problem of functions at 6:36:28
def check (val):
if val%2==0:
print("even")
else:
print("odd")

check(6)

thecodinghimanshu
Автор

6:36:00 I've seen many comments where the solution for this hw question has been posted, but non of them actually solved it correctly. Most of the ppl have just directly printed odd or even, The code should return a string. So here's what I've tried! :)

def oddeven(num) :
if (num%2==0) :
return "even"
else:
return "odd"
Number = int(input("enter your number"))
Print(oddeven(Number))

It works fine on my device!

Ribsky
Автор

First year me jane wale attendance lagaw

RushikeshKarad
Автор

One of the best tutorial on python
Your way of teaching is so good and crystal clear. I learned a lot from this tutorial. Tnx mam.

MiniRomance
Автор

Thanks mam koi bhi you tube par video dal de but concept yaha se hi clear hote hai thanks for this video mam

mohinipatil
Автор

@6:36:28
n=int(input("Enter Number: "))
def num(n):
if(n%2==0):
print(n, "EVEN")
else:
print(n, "ODD")
num(n)

nidhisaini
Автор

1:34:50
some technical error

marks = int(input("marks : "))

if(marks >= 90):
print("A")
elif(marks>=80 and marks<90):
print("B")
elif(marks >= 70 and marks<80):
print("C")
else:
print("D")

btw_itzharshu
Автор

Thank you so much for so much of knowledge and information.. Loved it.. Thank you❤🙏🙏🙏

jgeetanjali
Автор

•°Day 1(CHAPTER 1) -

° 1 - Our first program
Print("word")
° 2 - Variables
° 3 - Memory
° 4 - Rules for Identifiers
° 5 - DATA TYPES
• Integers - +25, -25, 0 e.t.c
• String - "Word", 'Word', "'Word""
• Float- 3.91, 2.5, 9.0 e.t.c
• Boolean - True, False ( T and F always use capital)
• None - a, b, c, d. e.t.c

° 6 - TYPE OF TOKENS
Punctuators
( ), , @, { }, [ ], # e.t.c
-=, +=, /=, \\=, *= e.t.c
° 7 - Type language - Implicit (Python), Explicit (Java, C++)

° 8 - EXPRESSION EXECUTION
• String Numeric Values Can Operate Together With*
A, B=2, 3
Txt="@"
Print (2*Txt*3)
• String & String Can Operate With +
A, B="2", 3
Txt="@"
° 9 - COMMENTS IN PYTHON
#Single line comment
"""This is
a multi - line
comment"""
#Print("Hello")-- won't be printed
Print("World") will be printed
°10 - INPUT IN PYTHON
input ( ) statement is used to accept values (using keyboard)from user
• string input
name = input ("name : ")
• int input
age = int ( input ("age : ") )
• float input
Price= float (input ("price : ") )
°11 - CONDITIONAL STATEMENTS
if-elif-else(SYNTAX)
°12 - TYPES OF OPERATORS
•Arithetic Operators(+, -, *, /, %, **)
•Relational /Comparison Operators(==, !!=, <, >, >=, <=)
• Assignment Operators (=, +=, -=, *=, \=, %=, **=)
• Logical Operators (not, and, or)

°13 - TYPE CONVERSION
a, b=1, 2.0
sum=a + b

#error
a, b = 1, "2"
sum = a+b

moumita
Автор

6:36:01

#WAP to check the calling Number is even or odd
def Odd_even(a):
if(a%2==0):
print("Even")
else:
print("Odd")

Odd_even(101)

btw_itzharshu
Автор

01:33 Python is a versatile and powerful programming language for beginners.
2:54:46 Python is a widely-used programming language.
4:27:10 Python is a powerful and versatile programming language.
5:48:38 Learn Python basics and practice questions.
7:23:52 Understanding the basics of Python programming
8:30:21 Introduction to Python for beginners
9:06:55 Learn the basics of Python programming
9:40:53 Python is a powerful and efficient programming language for beginners

venkatakrishna
Автор

Bsc-cs students attendance please....😌

alishahalwai
Автор

Solution of home work problem of functions at 6:36:38
def check_number(Num):
if Num%2==0:
print("EVEN")
else:
print("ODD")
check_number(4)

innocent_salman_z
Автор

# Calculate Simple interest program
P=int(input("Principal amount:"))
R= int(input("Rate of interest :"))
print("good") if R<=100 and R>=0 else print("Error please insert again") # clever if statement
T =int(input("Time in years:")) if R<=100 and R>=0 else ("Error")
si=(P*R*T)/100
print("Your simple interest is :", si)
print("Have a nice day, Human!")
Program of calculating simple interest

Raedsheikh