Binary and CSV Files in Python | Class 12 Computer Science | Lecture 13

Поделиться
HTML-код
  • Опубликовано: 2 янв 2025

Комментарии • 896

  • @ishankrajpal8231
    @ishankrajpal8231 4 года назад +15

    to display words whose length less than 4 :
    fp=open('blablabla'.txt','r')
    words=fp.read().split()
    for i in words:
    if len(i)

  • @shivgupta3714
    @shivgupta3714 3 года назад +48

    3:33 nobita still getting zero 🤣🤣🤣

  • @i_ashhhhh
    @i_ashhhhh 3 года назад +56

    No one
    Literally no one:
    Harsh bhaiya - Parle-G ka achaar!!!

  • @SumanBaghel-uk5vk
    @SumanBaghel-uk5vk 9 месяцев назад +141

    Who is wathching this right now for tomorrow's exam😅😂

  • @shriestkumar5778
    @shriestkumar5778 4 года назад +77

    Thanku bhaiyaas and didis for changing the future of India.... guiding us towards a super power india (jbhi hoga)

  • @rhythmgoel-uc4vg
    @rhythmgoel-uc4vg 9 месяцев назад +26

    sir mera parso board hai , pure saal dhang se nahi padha but aaj aapki videos dekh kr maza aagaya pura syllabus complete krlia and jo coding merko 10th se smjh ni aaya uski aaj clarity hogyi thank you :)))

  • @xperthighlight
    @xperthighlight 2 года назад +63

    in the question where we have to write a code to print last line of file :
    you can use this code also:
    f=open("1.txt","r")
    x=f.readlines()
    print(x[-1])

    • @techboyvikrant9048
      @techboyvikrant9048 10 месяцев назад

      genius

    • @xperthighlight
      @xperthighlight 10 месяцев назад +2

      @@techboyvikrant9048 Bhai yaad dila dia tune ki mene kabhi comment Kia tha , tab me 12th me tha , Aaj me IIT Kharagpur me hu btech in cse

    • @akarsh_24
      @akarsh_24 9 месяцев назад +1

      @@xperthighlight topper

    • @xperthighlight
      @xperthighlight 9 месяцев назад

      @@akarsh_24 😂😂nahi bhai me nahi hu iit me

  • @gursimarsingh7452
    @gursimarsingh7452 3 года назад +136

    This brave showing his ads like: wow! You really let this add in?😂🤦🏻.... Bro u won't be able to advertise if it wasn't for this ad 🤣

    • @Insigneon
      @Insigneon 3 года назад +18

      Plus who the heck watches yt via a browser on a smartphone.
      Like wtf do you want us to do mate...

    • @OmTheGreat
      @OmTheGreat 3 года назад +8

      @@Insigneon they want us to use there browser

    • @Insigneon
      @Insigneon 3 года назад +5

      @@OmTheGreat based bro

    • @aniket4573
      @aniket4573 3 года назад +7

      But I like brave for not showing ads 😂

    • @aashishraj187
      @aashishraj187 3 года назад +3

      @@Insigneon might their advertisement team forgot.....they have an option to whom they will be showing this advertisement like to those on P.C or T.V or mobile phone

  • @Kishan_Narrator
    @Kishan_Narrator 3 года назад +21

    7:37 my method
    a=open('data.txt','r')
    b=a.readlines()
    print(b[-1])
    a.close()

    • @AyushPatel-fr5ni
      @AyushPatel-fr5ni 3 года назад +3

      thx bro i tried thi one prac but was giving error but by your method i got solution thank you very much

    • @wizlittleboyff146
      @wizlittleboyff146 11 дней назад

      yaa same bhaiya

  • @rehanmomin8458
    @rehanmomin8458 2 года назад +18

    7:32 code is not valid gives error.
    Corrected code-
    file=open('data.txt','r')
    line=file.readlines()
    last=line[-1]
    print(last)
    11:21 also gives error.
    Corrected code-
    def displayword():
    a=open('Answer.txt','r')
    b=a.read()
    c=b.split()
    for i in range(len(c)):
    if len(c[i])>4:
    print(c[i])
    else:
    continue
    Or you could just assign and empty variable first like
    a=' '
    While a:
    Like that but for loop is more easy. Atleast for me.

    • @ironicknight6200
      @ironicknight6200 2 года назад

      Very nice bro.

    • @ironicknight6200
      @ironicknight6200 2 года назад +3

      I also tried the second code on 11:21, the program says local scope a can't be accessed.
      I think for a while and tried many changes in the code.
      Final conclusion is this Code:-
      def Displaywords():
      f=open('Lyrics.txt', 'r')
      a=f.read()
      L=a.split()
      for j in L:
      if (len(j)

    • @ironicknight6200
      @ironicknight6200 2 года назад +1

      @Nirmit Kun Nice

    • @Kapil7yheisngfer
      @Kapil7yheisngfer Год назад

      @@itachi03537 eren yeager

  • @hrishikeshbharadwaj6807
    @hrishikeshbharadwaj6807 4 года назад +171

    Aman bhaiya,, please bata do na ki aap Physics ki remaining chapter ki notes kab denge 📚📚please please reply🙏🙏 agar kisi ko pata hai please reply 🙏🙏🙏

  • @ishankrajpal8231
    @ishankrajpal8231 4 года назад +13

    to print last line:
    fp=open('blablabla.txt','r')
    lines=fp.read().splitlines()
    lastline=lines[-1]
    print(lastline)

    • @Arthur-vk6mv
      @Arthur-vk6mv 2 года назад

      or
      f=open("yes.txt",r)
      a=f.readlines()
      print(a[-1])

  • @rajat6014
    @rajat6014 4 года назад +270

    BHAIYA I KNOW YOU TRYING TO CREATE A BULK BUT PLEASE UPLOAD ALL OF PYTHON ASAP BECAUSE WE HAVE BOARDS,PRACTICALS ,AS WELL AS MAINS RIGHT INFRONT OF US , DON'T HAVE MUCH TIME LEFT HOPE U UNDERSTAND......

    • @prachikhobragade3527
      @prachikhobragade3527 4 года назад +8

      Ha sacchi Bhaiya load aaa jata hai python ka plzzzz Bhaiya upload all the video lecture aur Bhaiya plzzz ap chapter start karne se pehele chapter no. Likh diya kijiye plzz easily samaj aaaa jata hai. ...

    • @nishimahara9126
      @nishimahara9126 4 года назад

      Kaunsi book h Python ki apke school m

    • @prachikhobragade3527
      @prachikhobragade3527 4 года назад +7

      @@nishimahara9126 sumita arora...... Hai hamare school ke.... Apki koonsi hai?

    • @nishimahara9126
      @nishimahara9126 4 года назад +1

      Hai hi ni na 😑😂tbhi poocha... actually hmari mam alg alg pdf send krri h hr chptr k...and ab mujhe confusion hori h koi bolra h sumita arora koi Preeti arora koi ncert... smjh ni ara m kaunsi lu

    • @prachikhobragade3527
      @prachikhobragade3527 4 года назад

      @@nishimahara9126 oooo.....nhi hamara sumita hai.....by the way kaunsi school hai apki????

  • @mayank8387
    @mayank8387 3 года назад +78

    In the last program, the interpreter would give an error: "local variable 'a' referenced before assignment"
    To avoid this, before while loop, at line number 3, you'll have add one more line of code as follows:
    a =' '
    and you're all good. :)

    • @unknownuser4276
      @unknownuser4276 2 года назад +1

      are you mayank kumar? st. marks school?

    • @visheshlalit8756
      @visheshlalit8756 2 года назад +1

      Yes you are right as I have tried the program and it is giving error.

  • @HeyyyHardik
    @HeyyyHardik 3 года назад +5

    3:51 Nobita supremacy!! love the way you teach sir

  • @nucleuzshivam5109
    @nucleuzshivam5109 Год назад +9

    3:20 - CSV FILES
    4:00 - Reading a CSV FILE
    4:45 - writing a csv file
    5:45 - Practice time
    9:50 -Q3 imp

  • @aniketmeena2439
    @aniketmeena2439 3 года назад +8

    there is an error at 2:34 becoz we r opening a file(a) in write mode and trying to use read function in 4th line
    due to which print(p) will give an error

    • @krishmotwani3508
      @krishmotwani3508 9 месяцев назад

      Can you please tell me how to rectify the error

  • @anchalgupta2155
    @anchalgupta2155 4 года назад +43

    sir please upload the next lecture because my preboard will be start
    15 January

  • @Rohan-zf9ue
    @Rohan-zf9ue 3 года назад +268

    Who is watching this right now for tomorrow's exam 😂😂

  • @jaikapoor3666
    @jaikapoor3666 3 года назад +20

    You don’t have to put delimiter keyword because the default delimiter is comma itself. Also, you don’t need a loop of .writerow(), you can just pass the nested list in .writerows()

  • @shreymishra3615
    @shreymishra3615 4 года назад +38

    3:54 WHO ELSE NOTICED NOBITA=0 MARKS 😂😂😂

    • @darshanxarijit
      @darshanxarijit 4 года назад +8

      Tumhara billa billa mera billa doreamon 😁😜

    • @shreymishra3615
      @shreymishra3615 3 года назад +6

      @@darshanxarijit 🤣🤣🤣

  • @rohanranjanprasad2337
    @rohanranjanprasad2337 4 года назад +9

    Thank you bhaiya .... It's helping a lot.

  • @harshkeswani7428
    @harshkeswani7428 4 года назад +31

    Physics ke notes updload kardo pls optics and modern

  • @wizlittleboyff146
    @wizlittleboyff146 11 дней назад +1

    7:40 sir
    f=open(............,'r')
    R=f.readlines()
    x=R[-1]
    print(x)
    se bhi toh ajayega as readlines list me bana dega and -1 backward indexing se
    usko print kradenge
    am i right?

  • @AnkitJosh
    @AnkitJosh 4 года назад +2

    In 7:12 you need to define variable 'a' beforehand else it will give NameError as a is not defined.

  • @arjunsinghal2397
    @arjunsinghal2397 4 года назад +21

    Sir please upload all lectures and completed MySQL ASAP.
    We are having aur preboards in front of us🙏🙏🙏🙏

  • @muskanchaudhary84
    @muskanchaudhary84 4 года назад +2

    Thanks a lot harsh bhaiya ..😊😊

  • @RAJVEERYADAV786
    @RAJVEERYADAV786 4 года назад +2

    Thanks bhaiya you are the best😎

  • @vidhansrivastava
    @vidhansrivastava 7 дней назад +1

    2:24 you can't read from 'w' mode, right? then how is it "p=a.read()"

  • @satvik1533
    @satvik1533 3 года назад +14

    At 3:56 marks of Nobita😁😁
    How realistic bhaiya😅

    • @tejasantil9814
      @tejasantil9814 3 года назад +3

      I like the fact that a fictional character seems *realistic*

  • @dhruvsharma1502
    @dhruvsharma1502 9 месяцев назад +6

    Bro I'm watching this right now for tomorrow board final exam

  • @eyeguy5679
    @eyeguy5679 4 года назад +2

    awesomeness has no ending😄😄😄

  • @tarunparashar4505
    @tarunparashar4505 3 года назад +4

    bhaiya 7:33 pe error ayega because before going in while loop, 'a' must be defined which u defined inside the loop.

    • @khushi-rx5sk
      @khushi-rx5sk 3 года назад

      you are right

    • @ahuman4
      @ahuman4 3 года назад

      above the loop take a= " "(space or empty string)
      when u write while a: (you mean to say while there is a character the loop will keep going and when u reach the end, there is no characters so the while condition becomes false and loop terminates.

    • @osgarmy8662
      @osgarmy8662 3 года назад

      Last line print nhi ho rahi hai

  • @MaheshYadav-qw3lb
    @MaheshYadav-qw3lb 3 года назад +2

    With a slow speed of speaking this lecture can be better than school lectures

  • @AjaySingh-jg2bc
    @AjaySingh-jg2bc 4 года назад +2

    Thank you so much Bhaiyaa... Pls aage k Lec bhi daal do python k pls... Pls... Bhaiyaa 😵😥

  • @sonakshi162
    @sonakshi162 4 года назад +4

    Sir please upload next lecture 💙💙💙💙

  • @aaryanale9538
    @aaryanale9538 4 года назад +4

    thanks, bhaiyya...
    Ab please marathon me syllabus revision complete kara do! 🙏🏼🙏🏼

  • @akulpokhriyal2185
    @akulpokhriyal2185 3 года назад +12

    This guy really loves Parle-G and Tindey. 😆🤣

  • @padailikhaikaro1823
    @padailikhaikaro1823 3 года назад +4

    3:34 sir really knows which cartoon character has best and worst academic background 😂😂😂

  • @amanjeetsingh_
    @amanjeetsingh_ 3 года назад +1

    Mistake at 2:16 when the file1.txt opens in write mode then how we are reading the file
    ??

  • @guyoninternet8160
    @guyoninternet8160 9 месяцев назад +15

    4 ghante me exam hai, moye moye

  • @aayush_shahh11
    @aayush_shahh11 3 года назад +27

    3:19 he literally gave Nobita "0" marks 😂😂

  • @suryanshp
    @suryanshp 9 месяцев назад +4

    7:24, f.readlines karke print(L[-1]) chalega?

    • @surferr
      @surferr 9 месяцев назад

      chatgpt 🤡

    • @Jatin.pandattt
      @Jatin.pandattt 9 месяцев назад +1

      @@surferr jab sare queries programs chatgpt se le sakte h fir ham padh kyu re h .............bc education system hii kharab h

    • @surferr
      @surferr 9 месяцев назад

      @@Jatin.pandattt education system nhi, it's just ai, isliye log ml krre h zyada

  • @anandu7582
    @anandu7582 4 года назад +11

    Bhaiyaa, kya aap sab chapter ke definitions bhi notes me include kar sakthe hai? Thank you for ur effort ❤️

    • @nishimahara9126
      @nishimahara9126 4 года назад

      Kaunsi book h tunhare school m python ki?

  • @shubhalakshmigupta3497
    @shubhalakshmigupta3497 3 года назад +1

    @apni kaksha
    Bhaiya aapne reading of a binary file me exception handling jaise use of try & except blocks bataye nahi hai
    Bhaiya pls include this also🙏

  • @_atbw_
    @_atbw_ 9 месяцев назад +4

    10:52 Sir you have done a lot of errors while writing this code. The correct code is given below:
    c=open('lyrics.txt', 'r')
    a=True
    while a:
    a=c.readline()
    b=a.split()
    for i in b:
    if len(i)

  • @rudranshagrawal5758
    @rudranshagrawal5758 3 года назад +6

    Term 1board exam 4.06 am 7 hr to go....🙂 21 dec

  • @mukulsharma51
    @mukulsharma51 4 года назад +3

    Sir please upload more videos i haven't completed my syllabus yet and i also don't know the syllabus exactly. I am only following you please make more videos 🙏

  • @kunal1898
    @kunal1898 4 года назад +6

    Nitro Your Speed 🚅
    We have to fight with Thanos who killed our Vision.⚡

  • @akalsepaidal3355
    @akalsepaidal3355 3 года назад +11

    the code of the first question will give an error because in the first iteration the value of a is not defined.

  • @AdityaYadav-kb9oq
    @AdityaYadav-kb9oq 4 года назад +8

    Pls increase the frequency of lectures of cs

  • @AmanKumar-ev7ix
    @AmanKumar-ev7ix 4 года назад +3

    Pre boards has already started just complete the lectures soon please 🙏🙏

  • @sahilsawal
    @sahilsawal 4 года назад +3

    Awesome Sir :) 🔥🙏✌👏😇👍😎👌🤘

  • @shubhu1008
    @shubhu1008 2 года назад +1

    3:00 I think there is some typing mistake ,bcz when you open file only writing mode you can't read bcz it not make any sense ?

  • @ombothre2350
    @ombothre2350 3 года назад +5

    Bhaiya while a: me 'a' to defined hi nhi tha tab to error ho jaega na?
    Btw thank you so much for all videos

  • @anushkanaik1802
    @anushkanaik1802 4 года назад +16

    When will class 12th physics volume 2 notes will be uploaded?

  • @muskanchaudhary84
    @muskanchaudhary84 4 года назад +2

    Thanks sir 👐

  • @iitdelhi1731
    @iitdelhi1731 3 года назад +6

    Really thankful to Aman Bhaiya.. Keep growing and stay motivated..!!

  • @akshatmishra9581
    @akshatmishra9581 4 года назад +5

    Sir, it's my humble request from you and your team of apni kaksha to premiere this at early morning tomorrow is my cs preboard exam.. 🙏🙏🙏🙏

  • @dharshiniparthiban6367
    @dharshiniparthiban6367 3 года назад +12

    can you please make videos in english sir? You have many students from south india as well,trying to learn from your videos including me.
    and we find it really hard with hindi

    • @devanshchaudhary4098
      @devanshchaudhary4098 3 года назад

      Switch on the sub titles. I know it's tough for you guys. All the best.

    • @studiousman
      @studiousman 2 года назад

      @@devanshchaudhary4098 no subtitles brother

  • @sheetali7040
    @sheetali7040 3 года назад +8

    sir , in the last question, while running the code it shows the error,
    "while a:
    UnboundLocalError: local variable 'a' referenced before assignment"

  • @ajaychaudhry9394
    @ajaychaudhry9394 4 года назад +4

    Please upload SQL Lectures also

  • @chandankrmahato2202
    @chandankrmahato2202 4 года назад +60

    Aplog Notes kyo nhi upload karte ho😭😭😭😭😭😭😭😭😭😭😭😭😭😭😭😭😭😭😭😭😭😭😭😭😭😭😭😭😭😭😭🙄🙄😭

    • @shamsaarize5349
      @shamsaarize5349 4 года назад +13

      Abe to copy me likhona
      Kb tk dussre ke bll me chaloge😑😑😑

    • @chandankrmahato2202
      @chandankrmahato2202 4 года назад +15

      @@shamsaarize5349 Abe gandu notes agar mil jata toh...... video ko pause ⏸️ karke nhi likhna padta......

    • @sahilthapliyal
      @sahilthapliyal 4 года назад +4

      @@chandankrmahato2202 bro khud se banyaa hua notes sabse best hotee hee

    • @arshankhan5859
      @arshankhan5859 3 года назад +1

      @@chandankrmahato2202 OP

    • @Quacking_moose_
      @Quacking_moose_ 3 года назад +1

      @@chandankrmahato2202 well done bhai

  • @sureshedamanachakanath734
    @sureshedamanachakanath734 3 года назад +5

    They did my boi Nobita dirty 3:20

  • @VentureWithVed
    @VentureWithVed 4 года назад +8

    10:15 wo din door nhi jab hamare bacche bhi python padhenge...aur "file ka name" hamare poorvaj *BINOD ka naam denge😂👍🏻

  • @saatvikgupta_0208
    @saatvikgupta_0208 3 года назад +1

    6:55 this code is more efficient
    f=open("file.txt","r")
    l=f.readlines()
    print(l[-1])

    • @theblackkhole1255
      @theblackkhole1255 3 года назад

      hn bhai while a mai error hai last question ka bhi source code da diyo bhai hlp hojyagi meri

    • @someshjoyguru
      @someshjoyguru 3 года назад +1

      while a wala code galat hai. telling 'a' is not defined.

  • @chaithraasok662
    @chaithraasok662 3 года назад +1

    Thank you so much sir ♥

  • @prakharpandey3967
    @prakharpandey3967 Год назад

    f=open("C:\\Users\\Lenovo\\Desktop\\source.txt")
    a=f.readline()
    while a:
    print(a)
    a=f.readline()
    correct code for qusetion 2.

  • @prathmeshrodkar240
    @prathmeshrodkar240 3 года назад +5

    sir plsease conduct the mcqs session on python class 12 for term 1........ sir pls help sir

  • @vanshikasharma7467
    @vanshikasharma7467 3 года назад +2

    If u wud hv explained evrything in detail it wud hv been vry helpful u r just running in the entire video just for the sake of covering the topic

  • @nerdman8654
    @nerdman8654 4 года назад +2

    Bhaiya please upload more videos
    I really need them in my school tomorrow is my cs exam and I depended on your videos but you didn't upload any lecture of cs for a long time due to which i haven't studied well .

  • @anchalgupta2155
    @anchalgupta2155 4 года назад +3

    Sir plz upload next chapter 🙏🙏

  • @jamesjackson8619
    @jamesjackson8619 4 года назад +1

    Aman Bhai please try finishing computer syllabus before our practicals...I haven't touched our school book I've only been following your videos...

    • @aabc4941
      @aabc4941 4 года назад +1

      Guys please say them to do Programming in python idle. It would be helpful in practicals also as we will know how to do programming. Please anyone say this to aman bhaiya😭.

  • @udaykumarjha9587
    @udaykumarjha9587 4 года назад +13

    Agla lecture kb aayga ..

  • @riteshbhandare2763
    @riteshbhandare2763 3 года назад +5

    watching this before
    12 hours to go exams cs............ :)

  • @vijaybidwan344
    @vijaybidwan344 4 года назад +2

    Plz upload next chapters fast 🥺🥺🥺🥺🥺🥺

  • @Helly04
    @Helly04 2 года назад +3

    5:56
    But now the suitable line is, Ek tha raja
    Ek thi Rani, alg thi caste, khtm Kahani 🙄

  • @raool._
    @raool._ 3 года назад +4

    the question 4 (9:51) I tried the code jo aapne bataaya tha but it showed error
    so mene khud se ek try kiya and its working completely fine....
    def DISPLAYWORDS() :
    f= open("abc.txt",'r')
    a = f.read()
    l = a.split()
    for i in l:
    if len(i)

  • @axomiyapathshala5161
    @axomiyapathshala5161 4 года назад +2

    Sir Please upload the next videos 🙏🙏🙏

  • @mohitagrawal6179
    @mohitagrawal6179 3 года назад

    program at 7:37 doesn't work! it gives a runtime error as 'a is not defined', if you define initially a = f.readline(), after opening the file, it will still prints nothing
    This works for me:
    with open('test.txt', 'r') as f:
    a = f.readline()
    while a:
    b=a
    a = f.readline()
    print(b)
    And this also:
    with open('test.txt', 'r') as f:
    lastline = f.readlines()[-1]
    print(lastline)

  • @ajaychaudhry9394
    @ajaychaudhry9394 4 года назад +15

    Can You Please Upload One more Video LECTURE ON PYTHON CONNECTIVITY WITH MySQL, AS IT IS ALSO IN OUR COURSE

  • @pusphasingh9620
    @pusphasingh9620 4 года назад +4

    Physics notes please 📖📖📖📖

  • @subhashchand2393
    @subhashchand2393 9 месяцев назад

    Alternate answer for last ques is
    def displaywords():
    f=open('lyrics.txt','r')
    p=f.readlines()
    for i in p:
    j=i.split()
    for k in j:
    if len(k)

  • @ayushmaanrautela
    @ayushmaanrautela 9 месяцев назад +6

    Mai toh 4:40 pe dekh raha hu 😅

  • @rashika_zehra
    @rashika_zehra 4 года назад +1

    bhaiya aage ka jaldi upload kar dijiye please and thank you for all these videos

  • @ayush_aksingh
    @ayush_aksingh 4 года назад +6

    Aage ke videos bhaiya?????? 3 weeks ho gye aapko python ke video upload kare🥺

  • @prakritiagarwal0
    @prakritiagarwal0 4 года назад +3

    Plz upload the further videos fast because tomorrow is my preboard😅

  • @jagannathhari
    @jagannathhari 3 года назад +1

    If you don't want to close file use:
    with open(filepath,mode) as fileobject:
    Statement(s)

  • @saranshtyagi1214
    @saranshtyagi1214 4 года назад +2

    Bhaiya pls upload remaining lectures too. 🙏🏻

  • @resh390
    @resh390 3 года назад +1

    The teaching is well & good.
    But the volune is very low.. if you raise the volume it would be much better:)

  • @LUCIFER-yk1jt
    @LUCIFER-yk1jt 9 месяцев назад

    For the 3rd question if you want to add file path you can use this code also:
    a=input("Enter 1st file name: ")
    b=input("Enter 2nd file name: ")
    x1='C:\\Users\\SANJU\\Desktop\\'+a+'.txt'
    x2='C:\\Users\\SANJU\\Desktop\\'+b+'.txt'
    f1=open(x1,'r')
    f2=open(x2,'w')
    l=f1.readlines()
    f2.writelines(l)
    f2.close()

  • @tarunyadav2247
    @tarunyadav2247 4 года назад +10

    Upload more videos Aman bhai
    You are our hope for Class-12th PYTHON
    @Apni Kaksha

  • @shivamshandilya5059
    @shivamshandilya5059 4 года назад

    11:05 it will give error because a is not defined before while!

  • @Amitkumar-io1of
    @Amitkumar-io1of 4 года назад +14

    Eat well, sleep well, study well.

  • @Devish347
    @Devish347 9 месяцев назад +5

    Kon kon subah dekh rha hai 😢😂

  • @anuisgood
    @anuisgood Месяц назад

    F=open('data.txt','r')
    s1= F.readlines()
    s2=s1[-1]
    print(s2)

  • @bgmi8431
    @bgmi8431 9 месяцев назад +13

    Bhai aaj exam hai😢

    • @namitgarg3799
      @namitgarg3799 9 месяцев назад +2

      Same😂😂

    • @sharadmishra2186
      @sharadmishra2186 9 месяцев назад +1

      Same bro

    • @simranverma289
      @simranverma289 9 месяцев назад

      Ch ni horaa smj hini ar na ssb smjnRa kya kru 😢😢

    • @sharadmishra2186
      @sharadmishra2186 9 месяцев назад

      @@simranverma289 chor de bhai jaa ke so jaa abb kuch nahi kar sakta😂

    • @aarav2203
      @aarav2203 9 месяцев назад

      @@sharadmishra2186best option

  • @प्रमाणिकऔषधि
    @प्रमाणिकऔषधि 3 года назад +3

    Kids: aam ka aachar...
    Men: neembu ka aachar..
    Legend: tinde ka aachar...
    Legend pro max: Parle-G ka aachar...
    😂😂😂😂🙌🙌🙌

  • @deadshotgaming..7386
    @deadshotgaming..7386 4 года назад +6

    Bhaiya d block ke notes upload kar do plz..

  • @srishtivermaa
    @srishtivermaa 3 года назад +3

    where can I find the notes of this video? thanks for the video tho it was really helpful :)