Ugrás a fő tartalomra

Bejegyzések

Bejegyzések megjelenítése ebből a hónapból: március, 2021

Angol nyelv tanulás

 Újra kezdőként elkezdtem az angol nyelv tanulását. Úgy gondoltam az ingyenes online oktatásokkal kezdek: https://www.livelingua.com/ https://www.learnalanguage.com/ https://ocw.mit.edu/index.htm https://openlearning.mit.edu/ https://www.goangol.hu/ https://hu.duolingo.com/welcome http://www.tanoda.shp.hu/ https://www.5percangol.hu/ https://www.openwingsenglish.hu/ http://www.freeenglish.hu/ https://www.angolnyelvtanitas.hu/angolnyelvtanitas-blog/a-13-legjobb-ingyenes-angol-konyvlelohely https://www.goangol.hu/ Idő ráfordítás Napi 1 órát szeretnék rá szánni. Hol tartok most: Duolingo: Liga : Arany, Zafir, Rubin , Smaragd, Ametiszt, Gyémánt Alison https://alison.com/user/learner-record/19762137 Fundamentals of English Grammar - Revised Diploma in Basic English Grammar - Revised 2017 Online angol könyvek pdf ingyen  letöltéséhez Bookboon.com ( bookboon.com ) Booksee ( en.booksee.org ) Calameo Pdf Downloader ( calameo.pdf-downloader.com ) Free Computer Books ( freecomputerbooks.com ) Free

Tanulási előremenetel

 

Diplomák és tartalmuk

 Alison   https://alison.com/

XML ből CSV előállítás pythonnal

Parszolás és az eredmény csv filebe mentése Python kód: import xml.etree.ElementTree as ET import csv def parse_xml ( xml_file ): plant_list = [] tree = ET . parse ( xml_file ) root = tree . getroot () for item in root . findall ( './employee' ): plant = {} for child in item : plant [ child . tag ] = child . text . strip () # add item to dict level1 for child2 in child : plant [ child2 . tag ] = child2 . text . strip () # add item to dict level 2 plant_list . append ( plant ) # add dict to the list return plant_list def save_to_csv ( data , csv_file ): headers = [ 'name' , 'phone' , 'country' , 'date' , 'email' ] # headers list with ope

Kérdés/Válasz : Python angol 2

    Saját gyűjteményem gyöngy szemei. Csak saját felelősségre használd.    Link Pearl eyes from my own collection. Use at your own risk.   1. Do we need to compiler a program before execution in Python? Yes No 2. How to output the string “May the odds favor you” in Python? print(“May the odds favor you”) echo(“May the odds favor you”) System.out(“May the odds favor you”) printf(“May the odds favor you”) 3. How to create a variable in Python with value 22.6? int a = 22.6 a = 22.6 Integer a = 22.6  None of the above 4. How to add single-line comment in Python? /* This is comment */ !! This is comment // This is comment # This is comment 5. How to represent 261500000 as a floating number in Python? 2.615E8 261500000 261.5E8 2.6 6. Select the correct example of complex datatype in Python 3 + 2j -100j 5j All of the above are correct 7. What is the correct way of creating a multi-line string in Python? str = “”My name is Kevin and I live in New York”” str = “””My name is Kevin and I live in