?? ???? Amazon?? ? ?? ??? ??? ????. ???? ??? ????? ???? Medium?? ?? ??????. ??? ?? ??????!
??? ??? ?? ? ??? ??? ? Python ??? ?? ???? ??? ???? ?????. ? ????? NLP ???? ??? ??? ?? ?? ?? ???? 6?? ?? Python ??? ?????.
?? ???(re ??)
?? ???? ?? ??? ??? ??? ??????. Python? re
??? ??? ??? ?????. ???? ??? ??? ??? ??? ??????.
?? ?? ??? ?? ??:
import re text = "Contact us at info@example.com or support@example.com" email_pattern = r'\b[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Z|a-z]{2,}\b' emails = re.findall(email_pattern, text) print(emails)
??: ['info@example.com', 'support@example.com']
Regex? ??? ???? ?????. ?? ??? ??? ??:
text = "The price is .99" new_text = re.sub(r'$(\d+\.\d{2})', lambda m: f"€{float(m.group(1))*0.85:.2f}", text) print(new_text)
??: "The price is €9.34"
??? ?? ????
Python? string
??? re
?? ?? ??? ??? ?? ??? ???? ??? ?? ??? ?? ??? ??? ??? ??? ??? ?????.
??? ??:
import string text = "Hello, World! How are you?" translator = str.maketrans("", "", string.punctuation) cleaned_text = text.translate(translator) print(cleaned_text)
??: "Hello World How are you"
??? ??? ?? difflib
???? ????? ???? ???? ?? ??????. difflib
? ??? ??? ???? ?? ?? ????? ?????.
??? ?? ??:
from difflib import get_close_matches words = ["python", "programming", "code", "developer"] similar = get_close_matches("pythonic", words, n=1, cutoff=0.6) print(similar)
??: ['python']
SequenceMatcher
? ? ??? ??? ?????.
from difflib import SequenceMatcher def similarity(a, b): return SequenceMatcher(None, a, b).ratio() print(similarity("python", "pyhton"))
??: (??) 0.83
?? ??? ?? Levenshtein ??
Levenshtein ?? ????(?? python-Levenshtein
????? ??)? ?? ?? ? ?? ??? ??????.
??? ??:
import Levenshtein def spell_check(word, dictionary): return min(dictionary, key=lambda x: Levenshtein.distance(word, x)) dictionary = ["python", "programming", "code", "developer"] print(spell_check("progamming", dictionary))
??: "programming"
??? ??? ??:
def find_similar(word, words, max_distance=2): return [w for w in words if Levenshtein.distance(word, w) <= max_distance] print(find_similar("code", ["code", "coder", "python"]))
??: ['code', 'coder']
??? ??? ??? ?? ftfy
ftfy
?????? ??? ??? ???? mojibake? ?? ???? ??? ???? ???? ?????.
???? ??:
import ftfy text = "The Mona Lisa doesn?¢a??a?¢t have eyebrows." fixed_text = ftfy.fix_text(text) print(fixed_text)
??: "The Mona Lisa doesn't have eyebrows."
???? ???:
weird_text = "This is Fullwidth text" normal_text = ftfy.fix_text(weird_text) print(normal_text)
??: "This is Fullwidth text"
spaCy ? NLTK? ?? ???? ???
???? NLP? ?????. spaCy
? NLTK
? ??? split()
??? ?? ??? ??? ?????.
spaCy? ??? ???:
import re text = "Contact us at info@example.com or support@example.com" email_pattern = r'\b[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Z|a-z]{2,}\b' emails = re.findall(email_pattern, text) print(emails)
??: ['The', 'quick', 'brown', 'fox', 'jumps', 'over', 'the', 'lazy', 'dog', '.']
NLTK? word_tokenize
:
text = "The price is .99" new_text = re.sub(r'$(\d+\.\d{2})', lambda m: f"€{float(m.group(1))*0.85:.2f}", text) print(new_text)
??: (spaCy? ??)
?? ?? ? ?? ??
??? ??? ??? ??, ?? ?? ? ?? ??? ?? ?????. ??? ??? ??? ?? ??? ???(???)? ?????, CPU ??? ??? ?? ??? ????, ??? ??? ??(??? ???? ?? ??)? ????, ?? ??? ?? ???? ?????, CSV ??? ?? ??? ?? ?????? ?????.
??? ??? ?? ??? ???? ??? ?? ?????? ???? ??? ?? ???? ? ????. ??? ??? ??? ???? ???? ??? ??? ????? ?? ?????.
101?
Aarav Joshi? ?? ??? AI ?? ???? 101 Books? ?? AI ?? ??? ???? ??? ???? ??? ?????. Amazon?? Golang Clean Code? ??????. ? ?? ???? ?? ??? ??? "Aarav Joshi"? ?????!
??? ???
Investor Central, Investor Central(????/???), Smart Living, Epochs & Echoes, Puzzling Mysteries, Hindutva, Elite Dev, JS Schools
Medium? ????
Tech Koala Insights, Epochs & Echoes World, Investor Central ??, Puzzling Mysteries ??, Science & Epochs ??, Modern Hindutva
? ??? ???? ??? ?? ? ??? ?? ?? Python ??? ?? ?????. ??? ??? PHP ??? ????? ?? ?? ??? ?????!

? AI ??

Undress AI Tool
??? ???? ??

Undresser.AI Undress
???? ?? ??? ??? ?? AI ?? ?

AI Clothes Remover
???? ?? ???? ??? AI ?????.

Clothoff.io
AI ? ???

Video Face Swap
??? ??? AI ?? ?? ??? ???? ?? ???? ??? ?? ????!

?? ??

??? ??

???++7.3.1
???? ?? ?? ?? ???

SublimeText3 ??? ??
??? ??, ???? ?? ????.

???? 13.0.1 ???
??? PHP ?? ?? ??

???? CS6
??? ? ?? ??

SublimeText3 Mac ??
? ??? ?? ?? ?????(SublimeText3)

??? ??











Python? Unittest ? Pytest? ??? ? ???? ??, ?? ? ??? ????? ? ?? ?? ???? ??? ??? ?????. 1. ??? ??? ?? ??? ???? ??? ??? ??? ?????. UnitTest? ??? ??? ???? ???? Test \ _? ???? ???? ?????. Pytest? ? ?????. Test \ _?? ???? ?? ? ??????. 2. ??? ?? ?? ? ?? ? ??? ??? ????. UnitTest? Assertequal, AssertTrue ? ?? ??? ???? ?? Pytest? ??? Assert ?? ???? ?? ?? ??? ???? ?????. 3. ?? ??? ?? ? ?? ????? ????? ????.

Python? ?? ?? ??? ?? ? ???? ??????. ?? ??? ?? (? : ?? ?? ??)? ?? ?? ??? ???? ?? ??? ?? ??? ??? ? ????. ?? ??, ? ??? ?? ?? ??? ???? ??? ?? ?? ??? ?? ? ??? ???? ?? ??? ??? ??????. ? ???? ?? ??? ??? ????. 1. ?? ?? ?? ??? ?? ??? ??; 2. ?? ?? ??? ?? ??? ??? ?? ???? ???? ??????. 3. ??? ??? ???? ????? ???. 4. ???? ?? ? ???? ????? ????. ??? ??? ?? ?? ??? ???? ???? ???? my_list = [] ?? my_list = none? ???? ?? ?? ?? ??? ? ??? ??? ???? ??? ????.

Python? ??, ?? ? ?? ??? ??? ??? ?? ?? ??? ? ?? ???? ??????. ??? ?? ?? ??? ?? ?? ??? ??? ?? ?? ?? ???? ???? ? ?? ? ?? ??? ????? ? ?????. 1. [x2forxinRange (10)]? ?? ?? ??? ?? ???? ?? ?? ? ? ????. 2. {x : x2forxinrange (5)}? ?? ?? ???? ? ? ??? ???? ?????. 3. [xforxinnumbersifx%2 == 0]? ?? ??? ???? ??? ????? ????? ????. 4. ??? ??? ?? ?? ?? ??? ?? 3 ? ???? ???? ?? ?? ?? ? ???. ??? ?? ?? ???? ???? ??? ?? ?? ??? ??? ??????. ??? ???? ??? ?? ? ? ????

Python? ???? ??? ????? ?? ?? ? ???? ? ?????. ??? ? ???? ????? ???? ????? ???? ?????. 1. ?? API ? ?? ???? (? : HTTP, REST, GRPC)? ???? Python? Flask ? Fastapi? ?? ??? ??? ?? API? ???? ?? ?? HTTPX? ???? ?? ?? ???? ?????. 2. ??? ??? (Kafka, Rabbitmq, Redis)? ???? ??? ??? ???? Python Services? ?? ?? ???? ?? ? ???? ???? ??? ?? ?? ?, ?? ? ? ?? ??? ?? ? ? ????. 3. ??? ???? ?? C/C? ?? ?? ?? ??? (? : Jython)? ?? ?? ??

pythonisidealfordataanalysisduetonumpyandpandas.1) numpyexcelsatnumericalcomputationsfast, multi-dimensionalArraysandectorizedOferationsLikenp.sqrt ()

?? ????? (DP)? ??? ??? ? ??? ?? ??? ??? ??? ? ??? ??? ?? ??? ???? ??? ????? ??????. ? ?? ?? ??? ????. 1. ??? (??) : ??? ?? ??? ???? ??? ???? ?? ??? ??????. 2. ??? (?) : ?? ???? ???? ????? ?????. ???? ???, ?? ?? ?? ?? ??/?? ?, ??? ??? ?? ?? ?? ??? ??? ????? ?????. ?????? ????? ?? ???? ?? ??? ? ???, ?? ??? ???? ?? ?? ??? ???? ??? ???? ????? ???? ???????.

??? ?? ???? ????? ????? __iter_ ? __next__ ???? ???????. ① __iter__ ???? ??? ? ?? ??? ???? ??? ?? ?? ??? ?????. ② __next__ ???? ? ??? ?? ????, ?? ??? ??? ????, ? ?? ??? ??? stopiteration ??? ??????. status ??? ???? ??????? ?? ??? ??? ?? ?? ??? ???????. pile ?? ?? ???? ?? ??? ?? ? ??? ?? ? ??? ?????? ?????. simple ??? ??? ?? ?? ??? ?? ???? ???? ?? ??? ? ??? ?? ????? ???? ??? ??? ???????.

Python? ?? ???? ?? ???, ?? ?? ????, ?? ???? ?? ? AI/ML ??? ???? ??? ?????. ??, Cpython? ???? ????? ?? ??, ?? ?? ??? ? ?? ? ?? ??? ?? ??? ??????. ??, ??? ????? ?? ?? ? ?? ??? ????? ?? ?? ? ? ??? ?? ?????. ??, Pyscript ? Nuitka? ?? ?? ???? ??? ??? ?? ??? ?????. ?????, AI ? ??? ?? ??? ?? ???? ??? ?? ???????? ???? ?? ? ??? ?????. ??? ??? Python? ??? ??? ????? ???? ?? ??? ???? ??? ?????.
