Complete Python in One Shot 🔥String , List , Tuple & Dictionary 😨 Class 12 Computer Science

preview_player
Показать описание

In this session, Your Computer Science Educator Lovejeet Arora will take you through the Group By for the Class 12 Board 2023 Exams. Watch this complete session to boost your preparation for board exams 2023.

➡️ Use Code LALIVE to Unlock FREE Special Classes on our platform, & also Get 10% off on your Subscription today.
--------------------------------------------------

➤ About the Educator: Computer Science & Informatics Practices | MCA | 6+ Years Experience | Referral Code: "LALIVE" to Join Special(FREE)/Plus Class

➤You can enroll to Unacademy Subscription and get the following benefits:

1. Learn from your favourite teacher
2. Dedicated DOUBT sessions
3. One Subscription, Unlimited Access to Live Online Classes and Videos
4. Real-time interaction with best-in-class teachers
5. You can ask doubts in live online classes
6. Limited students in each Class
7. Download the videos & watch them offline

--------------------------------------------------
If you don’t wish to miss any updates and or the latest videos about K12 Exams Preparation, subscribe to the channel now. Students who have already subscribed, stay tuned as we will get more strategy and preparations videos and FREE LIVE CLASSES just for you. Feel free to spread the word – share the videos with your friends and classmates.

Topics Covered

class 12 computer science
class 12 computer science one shot
class 12 cs
class 12 python
class 12 python one shot
class 12 python revision tour
class 12 cs python revision tour
python revision tour class 12 unacademy
class 12 physics chapter 1
class 12 physics chapter 2
class 12 physics chapter 3
class 12 physics chapter 4
physics class 12 chapter 1 important questions
class 12 cs important questions
string class 12

#oneshot #sikandarbatch #strategy #class12 #computerscience #groupby #motivation
Рекомендации по теме
Комментарии
Автор

9:31 String
21:02 Traversing String
41:11 string operator
1:11:31 list
1:29:34 Tuple
1:33:59 Dictionary
It might help you ❤

Mohitj
Автор

Another method for this question 1:27:50

def INDEX_LIST(l):
global indexList
indexList=[]
for i in l:
if i != 0:
x=l.index(i)
indexList.append(x)
else:
continue

l=[12, 4, 0, 11, 0, 56]
INDEX_LIST(l)
print(indexList)

Another method for this question 2:18:31

val=int(input("Enter maximum value : "))
d={}
for i in range(val):
d[i+1]=(i+1)**2
print(d)

mr_coder-Nishant
Автор

31:41 mistake it will not print "python "

gauravbhardwaj
Автор

1:29:4
def Lshift(arr, n):
X=arr[n: ]+arr[ :n]
return X
list=[10, 20, 30, 40, 50, 60]
n=int(input ("enter the number: "))
print("Old list", list)
result=Lshift(list, n)
print("new list", result)

bhavyakashyap-kucf
Автор

1:29:11

def LShift(Arr, n):
a=[ ] #emty list for adding popped item
for i in range(0, n):
b=Arr.pop(i)
a.append(b)
Arr.extend(a)
print(Arr)
Arr=[10, 20, 30, 40, 12, 11]
n=2
LShift(Arr, n)


Output: [30, 40, 12, 11, 10, 20]



# i've not used idle to program this. I'm just writing it randomly. Hope its right.

rahulkumarsingh
Автор

def Lshift(Arr, n) :
for i in range (len(arr)):
if i < n :
Arr.append( Arr[ i ] )
print( Arr )



Most sufficient and correct code maybe please go through it and tell me my pals...
Jai shree Ram ♥️

Something_beyond_you_-
Автор

Thank you for this beautiful session 🥰

vivek_gamer
Автор

list=[10, 20, 30, 40, 12, 11]
i = 2
def LShift(Arr, n):
x = Arr[:n]
for i in range(n):
Arr.pop(0)
Arr.extend(x)
print(Arr)
LShift(list, i)

kaustubh
Автор

Mam your way of teaching is really very nice

urmilakumar
Автор

Mam bas python hi hogi ya SQL or communication bhi hoga?

vitthalruhela
Автор

Bs ye paper nipat Jaye fir toh Azad ho jaunga

darkbloodsgaming
Автор

def LShift(Arr, n):

Arr[:] = Arr[n:] + Arr[:n]

Arr = [10, 20, 30, 40, 12, 11]
n = 2
LShift(Arr, n)
print("Arr =", Arr)

DataComparisonInD
Автор

Etni sundar teacher padhaye to padhne me bhi maja aata h

vaishnavi
Автор

Who is watching this video 5 hrs before the exam 😂

KushagraGuptaIsHere
Автор

Mam Santra or mosmi alag alag hora ha kya ??😮

Ansh-szgx
Автор

Discovery of mama's name

Love+( jee+neet)= love jeet

Kesham-kwww
Автор

@2:19:07
value=int(input("entertr value"))
D={}
for i in range(value):
D[i]=i*i
print (D)

p.s.jaideep
Автор

Thankyou so much didi Aapne bahut help ki 🥺

diptanshumazumdar
Автор

Mam, 1:09:09 is question mei option 'A' correct a raha hai

sayanchatterjee
Автор

starting this right now for board exam on 2nd

Anonymous_baka