What is Python| History of Python| Why we learn Python in Tamil-Python Series Part 1

แชร์
ฝัง
  • เผยแพร่เมื่อ 27 ธ.ค. 2024

ความคิดเห็น •

  • @anithaamarnath1088
    @anithaamarnath1088 ปีที่แล้ว +15

    really very super easy to understand go head......❤❤

  • @chithumompritychannel7828
    @chithumompritychannel7828 4 วันที่ผ่านมา

    Nice explanation

  • @srisakthimariyammanthirukovil
    @srisakthimariyammanthirukovil หลายเดือนก่อน +1

    Exordinary explanation thank you for giving this video mam thanks a lot for your performance

  • @bannu-d8g
    @bannu-d8g 10 หลายเดือนก่อน +2

    Super mam 👍

  • @raja7december
    @raja7december ปีที่แล้ว +5

    Superb mam

  • @rekhak4427
    @rekhak4427 ปีที่แล้ว +6

    Very useful mam

  • @AARAJCB360
    @AARAJCB360 2 ปีที่แล้ว +9

    Hai mam good morning 🖐️
    Good explained so thank you very much 👏

  • @gopinathg2277
    @gopinathg2277 ปีที่แล้ว +3

    Thank you very much mam 🙏.

  • @SriRam-jo2nk
    @SriRam-jo2nk 5 หลายเดือนก่อน

    Very Nice teaching mam❤❤

  • @kowsalyakala1796
    @kowsalyakala1796 3 หลายเดือนก่อน +1

    Thank you sister👍

  • @maranagaming3131
    @maranagaming3131 8 หลายเดือนก่อน

    Super mam

  • @ulloor_photography
    @ulloor_photography ปีที่แล้ว

    Thank you sooo much❤

  • @Subalakshmi-qx2vr
    @Subalakshmi-qx2vr 5 หลายเดือนก่อน +1

    New subscriber

  • @lizaffazil9161
    @lizaffazil9161 3 หลายเดือนก่อน

    Super

  • @uma-5719
    @uma-5719 5 หลายเดือนก่อน

    Thank you mam 🎉😊

  • @Amalan-w9k
    @Amalan-w9k หลายเดือนก่อน +1

    Ok akka

  • @sangeethavijayakumar1084
    @sangeethavijayakumar1084 7 หลายเดือนก่อน +2

    Nice explain akka

  • @AbdulRahaman-oh4gw
    @AbdulRahaman-oh4gw 8 หลายเดือนก่อน +2

    Hello mam , ur way of teaching is very clear ..Tq u so much for all beginners.
    Na Botany background so na Python learn panna yenakku value, job and future erukkuma mam ?

  • @bose_pandi
    @bose_pandi 6 หลายเดือนก่อน

    Thanks Akka ❤

  • @dharanikandhan
    @dharanikandhan ปีที่แล้ว

    Thank, you❤ mam

  • @durgadevir1083
    @durgadevir1083 5 หลายเดือนก่อน +1

    Hi mam.. could you please upload the class for multi core computer architecture .

  • @totalthamizhyt05
    @totalthamizhyt05 2 ปีที่แล้ว

    1st view

  • @editzzvr9196
    @editzzvr9196 ปีที่แล้ว

    New subscriber ❤️

  • @AKASH007-r9t
    @AKASH007-r9t 11 หลายเดือนก่อน +2

    Hai mam enaku phytion ooda coding eappid pantradhu nu sollunga

    • @basictoprotamil
      @basictoprotamil  11 หลายเดือนก่อน +2

      th-cam.com/play/PLE6RCt0S1gX_0c4HPvU87oG7NovZh3NRO.html&si=hut06PWX4cOvfwxu

  • @UCSE-rt4ho
    @UCSE-rt4ho 10 หลายเดือนก่อน

    Hi mam Good morning
    How to import the modules in latest version in command prompt python packages

    • @basictoprotamil
      @basictoprotamil  10 หลายเดือนก่อน +1

      Follow these steps
      1. open command prompt
      2. Navigate to location where your python are
      3. Start the python interpreter by typing python or python with version number for example python3 and press enter
      4. You can import modules by using import command
      for example import math
      5. If your installing external packages use pip command in command prompt. After installing you can import..

  • @djgaming7637
    @djgaming7637 2 ปีที่แล้ว

    Daily um video poduga

  • @DeenaDD
    @DeenaDD ปีที่แล้ว

    Mam super mam ... And very easy... Mam oru questions mam ....IDE apadina Enna mam plz sollunga mam.......pls...

    • @basictoprotamil
      @basictoprotamil  ปีที่แล้ว +1

      IDE Integrated development environment nu soluvon. Nama programs ah easy ah type pana, error clear pana, debug pana, use panra oru software than IDE.

  • @royalwinautomatedsoftware2985
    @royalwinautomatedsoftware2985 2 ปีที่แล้ว +1

    Hai . Unga video ellam parthuruken learn paniruken. Enaku oru doubt pandas matum use pani read and write data script panen read data read panuthu but status oru column vachiruken athula write agala enaku antha code matum solunga. Fullname and password read aguthu status la "passed" or "failed" write aganum status column.
    import pandas as pd
    df = pd. read_excel('data.xlsx')
    for i in df.index:
    entry = df.loc[i]
    name_input = browser.find_element_by_name('fullname")
    password_input = browser.find_element_by_name('password")

    • @basictoprotamil
      @basictoprotamil  2 ปีที่แล้ว

      Thank you for your support.
      Entha code try pani parunga, openpyxl install panikonga
      pip install openpyxl
      If Excel file has data like this,
      fullname password status
      xxx xxx
      yyy yyy
      zzz zzz
      #Code to write/append specific column values in excel
      import pandas as pd
      import openpyxl
      from openpyxl import load_workbook
      df = pd.DataFrame({'status': ['passed','failed','passed']})
      wb = load_workbook('data.xlsx')
      ws = wb['Sheet1']
      for i, row in df.iterrows():
      cell = 'C%d' % (i + 2)
      ws[cell] = row[0]
      wb.save('data.xlsx')
      df = pd. read_excel('data.xlsx')
      print(df)

  • @editzzvr9196
    @editzzvr9196 ปีที่แล้ว +2

    Mam na diploma mudichitu python padicha job kedaikuma IT field la

  • @dhanushragava-d2j
    @dhanushragava-d2j ปีที่แล้ว

  • @afu1016
    @afu1016 ปีที่แล้ว +1

    Please upload python modules

  • @jeevasankaralingam1827
    @jeevasankaralingam1827 7 หลายเดือนก่อน +1

    Python badicha game davelapar akalaama mam

    • @basictoprotamil
      @basictoprotamil  7 หลายเดือนก่อน

      Kandipa game developer agalam. Pygame, Panda3D, Godot (with GDScript), Ren'Py, and Arcade entha maari game engines python la available ah eruku.

  • @praveenm2489
    @praveenm2489 2 ปีที่แล้ว +5

    could you explain the data science and when you will study it?

  • @gayathri9729
    @gayathri9729 4 หลายเดือนก่อน

    Akka nan ba history padikiren ..nan pyothan kathukalama enakku it field la job ketaikuma akka sollunga

    • @basictoprotamil
      @basictoprotamil  4 หลายเดือนก่อน

      Kandipa kedaikum python la certification course panunga. Degree finish panitu IT field la job try panunga

    • @gayathri9729
      @gayathri9729 4 หลายเดือนก่อน

      @@basictoprotamil thanks ka

  • @mahalakshmimani3543
    @mahalakshmimani3543 9 หลายเดือนก่อน

    Hai mam iam completed B.A sociology
    Naa python patikkalama ennku usefull la erukuma

    • @basictoprotamil
      @basictoprotamil  9 หลายเดือนก่อน

      Kandipa padikalam. If you are interested to enter into IT companies, it ll be very useful. But neenga non IT background ah erukaranala, you have to study python or any other language courses with certification course.

  • @sharmilasornam7997
    @sharmilasornam7997 2 ปีที่แล้ว

    Mam vera entha computer course mudikathavanga python course useful a irukuma

    • @basictoprotamil
      @basictoprotamil  2 ปีที่แล้ว

      Kandipa useful ah erukum. Python course learn panravangaluku opportunities athegam, now and also in future.

  • @amc2074
    @amc2074 ปีที่แล้ว

    Akka naa B.A.Economics padikkuren naa python kaththukkalamha sollunga please

    • @basictoprotamil
      @basictoprotamil  ปีที่แล้ว +1

      Kandipa useful ah erukum. Python used in many fields so neenga kathukita ungaluku economics field la analytical skills increase pana useful ah erukum

  • @SivaKumar-el2is
    @SivaKumar-el2is 7 หลายเดือนก่อน +9

    How many days to learn python mam

    • @mrgoats8474
      @mrgoats8474 6 หลายเดือนก่อน +1

      10 minutes

    • @Codingannaa
      @Codingannaa 6 หลายเดือนก่อน

      5mins ​@@mrgoats8474

    • @athithyan302
      @athithyan302 5 หลายเดือนก่อน +1

      2½month only

    • @HariGaran-l5o
      @HariGaran-l5o 4 หลายเดือนก่อน

      ​@@mrgoats8474solluuu eh 🤡👍

  • @backyalakshmi5829
    @backyalakshmi5829 4 หลายเดือนก่อน

    😅
    😊

  • @ajiajith5163
    @ajiajith5163 ปีที่แล้ว

    Could you explain full python programming language

    • @basictoprotamil
      @basictoprotamil  ปีที่แล้ว

      Full Python Course for beginners
      th-cam.com/video/IfSWhS3YmkY/w-d-xo.html

  • @t.aravinth9896
    @t.aravinth9896 ปีที่แล้ว

    Mam python mobile la learn pana midiyuma

    • @basictoprotamil
      @basictoprotamil  ปีที่แล้ว +1

      Kandipa learn panalam, python learning apps neraiya eruku

    • @t.aravinth9896
      @t.aravinth9896 ปีที่แล้ว

      What ur opinion mam for learn best app and easy find error

    • @basictoprotamil
      @basictoprotamil  ปีที่แล้ว

      Codeliber nu oru app eruku. I find that is the best app simple and precise explanation in each and every topic. And many programming languages are available. They offer online compiler also. Try that one.

  • @nkavitha0406
    @nkavitha0406 2 ปีที่แล้ว

    P

  • @kavyamohan3368
    @kavyamohan3368 2 ปีที่แล้ว +1

    Core python sollithanga mam

  • @YogeshRamesh-y8i
    @YogeshRamesh-y8i หลายเดือนก่อน

    Thank you mam😊

  • @divyasanthosh3916
    @divyasanthosh3916 9 หลายเดือนก่อน

    very useful mam

  • @KARTHICK-vo1xg
    @KARTHICK-vo1xg ปีที่แล้ว +1

    P