Inezar | A place to share knowledge and grow your career Inezar | A place to share knowledge and grow your career
Αναζήτηση αποτελεσμάτων
Δες όλα τα αποτελέσματα
  • Γίνε Μέλος
    Σύνδεση
    Εγγραφή
    Αναζήτηση
    Night Mode

Κατάλογος

Expand your network, discover new opportunities, enhance your financial potential, and develop valuable skills for personal and professional growth.

  • Χρήστες
  • Δημοσιεύσεις
  • Σελίδες
  • Ομάδες
  • Events
  • Blogs
  • Marketplace
  • Χρηματοδότηση
  • Προσφορές
  • Εργασίες
  • Courses
  • Forum
  • Ταινίες
  • Python for Everybody - Full University Python Course Code σε πρόσθεσε στο Computer Programming
    2024-07-17 14:53:52 - Μετάφραση
    Dynamic Typing, Stubs, and Namespaces in Python
    Here's a breakdown of these three concepts in Python: 1. Dynamic Typing: Python is a dynamically typed language. This means that the type of a variable is not declared when it's created but determined at runtime based on the value assigned to it. For example: Python x = 5 # x is an integer (int) x = "Hello" # x is now a string (str) This flexibility can be...
    0 Σχόλια 0 Μοιράστηκε 10χλμ. Views 0 Προεπισκόπηση
    Παρακαλούμε συνδέσου στην Κοινότητά μας για να δηλώσεις τι σου αρέσει, να σχολιάσεις και να μοιραστείς με τους φίλους σου!
  • Python for Everybody - Full University Python Course Code σε πρόσθεσε στο Computer Programming
    2024-07-17 14:56:53 - Μετάφραση
    Keywords, Multiple Output, and Documentation
    1. Keywords: Keywords are reserved words in Python that have special meanings. They cannot be used as variable names or function names. Here are some common Python keywords: def: Used to define functions. if, else: Used for conditional statements. for, while: Used for loops. return: Used to return values from functions. class: Used to define classes. import: Used to import...
    0 Σχόλια 0 Μοιράστηκε 10χλμ. Views 0 Προεπισκόπηση
    Παρακαλούμε συνδέσου στην Κοινότητά μας για να δηλώσεις τι σου αρέσει, να σχολιάσεις και να μοιραστείς με τους φίλους σου!
  • Python for Everybody - Full University Python Course Code σε πρόσθεσε στο Computer Programming
    2024-07-17 14:58:59 - Μετάφραση
    F-String Formatting and String Splicing
    F-strings and string splicing are both methods for creating formatted strings in Python. However, they have distinct approaches and use cases: 1. F-Strings (formatted string literals): Introduced in Python 3.6, f-strings are a powerful and concise way to embed expressions directly within strings. They use an f prefix before the opening quotation mark. Here's the basic syntax:...
    0 Σχόλια 0 Μοιράστηκε 14χλμ. Views 0 Προεπισκόπηση
    Παρακαλούμε συνδέσου στην Κοινότητά μας για να δηλώσεις τι σου αρέσει, να σχολιάσεις και να μοιραστείς με τους φίλους σου!
  • Python for Everybody - Full University Python Course Code σε πρόσθεσε στο Computer Programming
    2024-07-17 15:00:16 - Μετάφραση
    String Methods
    String split() and join() It’s a common programming task is to take a large string and break it down into a bunch of substrings. The split() splits a string into a list of substrings called tokens. All the tokens combined form the larger string if put together.  A separator character indicated where to split up the string, to create the tokens. ...
    0 Σχόλια 0 Μοιράστηκε 14χλμ. Views 0 Προεπισκόπηση
    Παρακαλούμε συνδέσου στην Κοινότητά μας για να δηλώσεις τι σου αρέσει, να σχολιάσεις και να μοιραστείς με τους φίλους σου!
  • Python for Everybody - Full University Python Course Code σε πρόσθεσε στο Computer Programming
    2024-07-17 15:02:18 - Μετάφραση
    Lists, List Methods, and List Iteration
    Lists are a fundamental data structure in Python used to store ordered collections of items. They are mutable, meaning you can modify their contents after creation. Here's a breakdown of lists, methods, and iteration: 1. Lists: Lists are created using square brackets []. Elements within the list can be of any data type (numbers, strings, booleans, even other lists). Python...
    0 Σχόλια 0 Μοιράστηκε 14χλμ. Views 0 Προεπισκόπηση
    Παρακαλούμε συνδέσου στην Κοινότητά μας για να δηλώσεις τι σου αρέσει, να σχολιάσεις και να μοιραστείς με τους φίλους σου!
  • Python for Everybody - Full University Python Course Code σε πρόσθεσε στο Computer Programming
    2024-07-17 15:04:29 - Μετάφραση
    Nested Lists, List Slicing, and Modifying Lists
    Here's a breakdown of nested lists, list slicing, and modifying lists in Python: 1. Nested Lists: Nested lists are lists that contain other lists as elements. They allow you to create multi-dimensional data structures, useful for representing tables, grids, or hierarchical relationships. Python menu = [ ["Pizza", ["Margherita", "Pepperoni", "Hawaiian"]], ["Pasta",...
    0 Σχόλια 0 Μοιράστηκε 14χλμ. Views 0 Προεπισκόπηση
    Παρακαλούμε συνδέσου στην Κοινότητά μας για να δηλώσεις τι σου αρέσει, να σχολιάσεις και να μοιραστείς με τους φίλους σου!
  • Python for Everybody - Full University Python Course Code σε πρόσθεσε στο Computer Programming
    2024-07-17 15:06:32 - Μετάφραση
    Dictionaries
    Dictionaries are another fundamental data structure in Python used for storing collections of items. Unlike lists which use numerical indexes for access, dictionaries use key-value pairs. This makes them ideal for situations where you need to associate data with names or unique identifiers. Here's a breakdown of dictionaries in Python: 1. Creating Dictionaries: Dictionaries are created...
    0 Σχόλια 0 Μοιράστηκε 14χλμ. Views 0 Προεπισκόπηση
    Παρακαλούμε συνδέσου στην Κοινότητά μας για να δηλώσεις τι σου αρέσει, να σχολιάσεις και να μοιραστείς με τους φίλους σου!
  • Tebtalks Access
    πρόσθεσε ένα video Science and Technology
    2024-07-17 15:14:59 - Μετάφραση
    Mastering Microsoft Word 2019: A Complete Guide to Inserting and Drawing Tables, using commas to separate them:
    #msword2019, #wordtables, #howtomaketablesinword, #wordtutorial, #insertingtables, #drawingtables, #microsoftwordguide, #wordformatting, #officetutorial, #worddocuments
    Mastering Microsoft Word 2019: A Complete Guide to Inserting and Drawing Tables, using commas to separate them: #msword2019, #wordtables, #howtomaketablesinword, #wordtutorial, #insertingtables, #drawingtables, #microsoftwordguide, #wordformatting, #officetutorial, #worddocuments
    Love
    1
    0 Σχόλια 0 Μοιράστηκε 28χλμ. Views 122 0 Προεπισκόπηση
    Παρακαλούμε συνδέσου στην Κοινότητά μας για να δηλώσεις τι σου αρέσει, να σχολιάσεις και να μοιραστείς με τους φίλους σου!
  • ALAGAI AUGUSTEN
    σε πρόσθεσε στο Technology
    2024-07-17 17:26:52 - Μετάφραση
    BASIC COMPUTER NETWORK
    A computer network is a collection of interconnected devices, such as computers, servers, and other hardware, that communicate with each other to share resources and information. These devices can be connected through various types of communication channels, including wired cables, wireless signals, and other media. The primary goal of a computer network is to enable data sharing and...
    0 Σχόλια 0 Μοιράστηκε 10χλμ. Views 0 Προεπισκόπηση
    Παρακαλούμε συνδέσου στην Κοινότητά μας για να δηλώσεις τι σου αρέσει, να σχολιάσεις και να μοιραστείς με τους φίλους σου!
  • ALAGAI AUGUSTEN
    σε πρόσθεσε στο Technology
    2024-07-17 17:31:43 - Μετάφραση
    POSSIBLE CHALLENGES FACED WHEN USING THE NETWORKS
    Using a computer network presents several challenges that can impact performance, security, and overall efficiency. Here are some of the key challenges: 1. Security Threats: ·      Cyberattacks: Networks are vulnerable to attacks such as hacking, malware, ransomware, and phishing. ·      Data Breaches: Unauthorized access can...
    0 Σχόλια 0 Μοιράστηκε 12χλμ. Views 0 Προεπισκόπηση
    Παρακαλούμε συνδέσου στην Κοινότητά μας για να δηλώσεις τι σου αρέσει, να σχολιάσεις και να μοιραστείς με τους φίλους σου!
  • Δείχνουμε (241-250 από 3129)
  • «
  • Προηγούμενο
  • 23
  • 24
  • 25
  • 26
  • 27
  • Επόμενο
  • »
© 2026 Inezar | A place to share knowledge and grow your career Greek
English Arabic French Spanish Portuguese Deutsch Turkish Dutch Italiano Russian Romaian Portuguese (Brazil) Greek
Help & Support Όρους Πολιτική Ιδιωτικότητας Επικοινώνησε μαζί μας Support Center Κατάλογος