Καλώς ορίσατε στο dotNETZone.gr - Σύνδεση | Εγγραφή | Βοήθεια
σε

 

Αρχική σελίδα Ιστολόγια Συζητήσεις Εκθέσεις Φωτογραφιών Αρχειοθήκες

Παρουσίαση με Ετικέτες

Όλες οι Ετικέτε... » python   (RSS)
  • HowTo: Extract numeric suffix from a string in Python

    I recently needed to extract a numeric suffix from a string value in Python. Initially I did the following: import re def extractNumSuffix(value):     return (None if (search:=re.search(‘^\D*(\d+)$’, value, re.IGNORECASE)) is None else search.group(1)) Note that return has a single-line expression. So ...
    Δημοσιεύτηκε στο George Birbilis' blog (Weblog) από το μέλος birbilis στις Αυγούστου 24, 2020
  • HowTo: Install Python, PIP and cx_Oracle on MSYS2 / Windows

    Here’s how to install Python, PIP package installer and cx_Oracle extension module on MSYS2: $ pacman -S python warning: python-3.8.3-1 is up to date — reinstalling resolving dependencies… looking for conflicting packages… Packages (1) python-3.8.3-1 Total Installed Size:  108.66 MiB Net Upgrade ...
    Δημοσιεύτηκε στο George Birbilis' blog (Weblog) από το μέλος birbilis στις Αυγούστου 23, 2020
  • Python rstrip and whitespace

    Was just reading https://www.w3schools.com/python/ref_string_rstrip.asp which says The rstrip() method removes any trailing characters (characters at the end a string), space is the default trailing character to remove. Notes: 1) the chars param was added at Python 2.2.3, can’t use it at older versions as noted at ...
    Δημοσιεύτηκε στο George Birbilis' blog (Weblog) από το μέλος birbilis στις Ιουλίου 10, 2020
  • HowTo: make raw_input & input work the same in both Python 2 and 3

    Was just trying to make a Python 2 script work in Python 3 and at first it seemed I just needed a small change to add missing parentheses to the argument of a couple of print statements. But then another issue came up, it wasn’t understanding the command raw_input(somePrompt) that was occuring at various places […]
    Δημοσιεύτηκε στο George Birbilis' blog (Weblog) από το μέλος birbilis στις Ιουλίου 10, 2020
  • Twitter #bot or not? Posing as Automation/AI specialist & Python guru

    I just came across this strange thing on twitter: Received a notification that some “Virginia A. Osborn” liked a tweet of mine that was a) in Greek b) totally of a subset of Greek residents interest, highly unlikely it would have meant anything to a person with a foreign name. Then I saw that twitter […]
    Δημοσιεύτηκε στο George Birbilis' blog (Weblog) από το μέλος birbilis στις Ιουνίου 5, 2018
  • Ζητείται Web Developer για PHP ή Python

    Ζητείται Web Developer με γνώσεις Cake PHP για να εργαστεί σε νέο ελπιδοφόρο start-up με έδρα την Ελλάδα, που φιλοδοξεί να αλλάξει ριζικά το πεδίο εύρεσης εργασιών στην Ελλάδα αλλά και το εξωτερικό. Η ομάδα αποτελείται από άτομα με μεταπτυχιακές και διδακτορικές σπουδές στο εξωτερικό και αποδεδειγμένο track record στην ίδρυση ...
    Δημοσιεύτηκε στο Αναζήτηση Συνεργατών (Forum) από το μέλος alfisti στις Δεκεμβρίου 6, 2012
  • DLR - προχωρημένη υποστήριξη για δυναμικές γλώσσες στο .NET Framework

    Το CLR, το runtime του .NET Framework, έχει εξ αρχής σχεδιαστεί ώστε να προσφέρει τις ''υπηρεσίες'' του σε μια ποικιλία από γλώσσες προγραμματισμού, χωρίς να εξαιρούνται οι δυναμικές γλώσσες. Η υλοποίηση της Python για το .NET, η IronPython, έχει ανοίξει το δρόμο, και τώρα που πρόκειται να ακολουθήσουν κι άλλες δυναμικές γλώσσες, η ομάδα του CLR ...
    Δημοσιεύτηκε στο Ειδήσεις του dotNETZone.gr (Forum) από το μέλος mns στις Μαΐου 2, 2007
Με χρήση του Community Server (Commercial Edition), από την Telligent Systems