Learn to program in Python (English)

Niveau
Tijdsduur
Locatie
Op locatie
Startdatum en plaats

Learn to program in Python (English)

Vijfhart IT-Opleidingen
Logo van Vijfhart IT-Opleidingen
Opleiderscore: starstarstarstarstar_border 8,2 Vijfhart IT-Opleidingen heeft een gemiddelde beoordeling van 8,2 (uit 561 ervaringen)

Tip: meer info over het programma, prijs, en inschrijven? Download de brochure!

Startdata en plaatsen

placeNieuwegein
2 mei. 2024 tot 8 mei. 2024
Toon rooster
event 2 mei 2024, 08:45-16:00, Nieuwegein, Day 1
event 3 mei 2024, 08:45-16:00, Nieuwegein, Day 2
event 6 mei 2024, 08:45-16:00, Nieuwegein, Day 3
event 7 mei 2024, 08:45-16:00, Nieuwegein, Day 4
event 8 mei 2024, 08:45-16:00, Nieuwegein, Day 5
placeNieuwegein
30 okt. 2024 tot 5 nov. 2024
Toon rooster
event 30 oktober 2024, 08:45-16:00, Nieuwegein, Day 1
event 31 oktober 2024, 08:45-16:00, Nieuwegein, Day 2
event 1 november 2024, 08:45-16:00, Nieuwegein, Day 3
event 4 november 2024, 08:45-16:00, Nieuwegein, Day 4
event 5 november 2024, 08:45-16:00, Nieuwegein, Day 5

Beschrijving

Vijfhart, dat klopt voor jou!

  • Oefenomgeving tot 3 maanden na afronding beschikbaar   
  • Flexgarantie: wissel eenvoudig van virtueel naar fysiek, of andersom  
  • Kennisgarantie: volg jouw cursus gratis nog een keer, fysiek of virtueel  
  • Ontvang een gratis proefexamen bij meerdere opleidingen   

Lesmethode :

Klassikaal

Algemeen :

General
The course 'Learn to program in Python' is specifically intended for anyone who has no experience with programming yet and wants to learn Python programming. This Python course for beginners covers the essential aspects of programming in general and of the Python programming language specifically.

What will you learn during this 5-day course?
During this 5-day Python course you work towards being able to independently write code in Python. Relevant terminology for programming in general will be covered, with an emphasis on algorithms: which steps lead from problem definition to solution. Apart from that, the course covers various programming constr…

Lees de volledige beschrijving

Veelgestelde vragen

Er zijn nog geen veelgestelde vragen over dit product. Als je een vraag hebt, neem dan contact op met onze klantenservice.

Nog niet gevonden wat je zocht? Bekijk deze onderwerpen: Python, PHP, Programmeren (algemeen), Perl Scripting en Big Data.

Vijfhart, dat klopt voor jou!

  • Oefenomgeving tot 3 maanden na afronding beschikbaar   
  • Flexgarantie: wissel eenvoudig van virtueel naar fysiek, of andersom  
  • Kennisgarantie: volg jouw cursus gratis nog een keer, fysiek of virtueel  
  • Ontvang een gratis proefexamen bij meerdere opleidingen   

Lesmethode :

Klassikaal

Algemeen :

General
The course 'Learn to program in Python' is specifically intended for anyone who has no experience with programming yet and wants to learn Python programming. This Python course for beginners covers the essential aspects of programming in general and of the Python programming language specifically.

What will you learn during this 5-day course?
During this 5-day Python course you work towards being able to independently write code in Python. Relevant terminology for programming in general will be covered, with an emphasis on algorithms: which steps lead from problem definition to solution. Apart from that, the course covers various programming constructions, as needed for flow control, data types with their typical applications, binary/octal/hexadecimal representation of numbers, and many other programming-related concepts.

Practical excercises
Apart from the conceptual part of programming, the syntax of Python is covered, illustrating the extensive possibilities of the Python programming language. The last day of the course covers the object oriented way of programming.
All topics will be trained extensively with practical lab exercises, under the guidance of the instructor. Besides, additional exercises are provided to be made at home in the evening or during the weekend, to obtain even more profit from this Python course.

Are you attending this course? Then you receive the following documentation:

  • A student pack with copies of the presentations, lab exercises and answers to the exercises so that you learn Python well.

  • Shortly after the course you will receive a certificate as a proof of participation in this Python course.


We bieden deze cursus ook in het Nederlands aan, bekijk het hier: Leren programmeren in Python.

Doel :

IAt the end of this Python course you can independently write a Python program or participate in a project with others

Doelgroep :

If you're looking for a Python course for beginners, or you are a beginning programmer, seeking to learn the syntax and characteristics of the Python programming language and programming skills in general, this is the course to learn Python.

Voorkennis :

No previous experience in programming is required. This Python course is for beginners and will present the fine points of programming in general, and the syntax of the Python programming language as such.

Onderwerpen :


- Introduction to algorithms:
   - algorithms for everyday human versus programming algorithms. The life cycle of computer programs.
- Introduction to Python:
   - Positioning, properties, applications, practical use, version2 vs. version 3, Python shell, scripting.
- Basic data types:
   - Constants and variables. Data types. Choosing names. Comment notation. Strings and numbers. Expressions and operators. Elementary string operations. Cutting slices. Overview of the data types and their properties. References. Mutable vs. immutable.
- Program structures:
   - Indentation as block structure, code style (PEP8). Booleans. Extensive coverage of control structures if-elif-else, for-else and while-else. break and continue statements. enumerate and range functions. Best practices. Introduction to exception handling (EAFP). Dummy statement pass.
- More about sequences and strings:
   - Operations on sequences. Specific string methods. Two ways of string formatting.
- More about lists:
   - Specific list methods. Operators for lists. List comprehension. The sorted and reversed functions.
- Bits and bytes:
   - Decimal, binary, octal and hexadecimal representation. String formatting for these representations. Bit manipulations (and, or, xor, shift). Introduction to encoding. Little versus big endian (endianess).
- Files:
   - Binary versus text files. Open modes. Reading from and writing to files. Changing the current offset. Using stdin, stdout and stderr.
- Encoding:
   - Unicode sandwich. Encode versus decode. Different encoding standards. Default encoding. The 'bytes' and 'bytearray' data types.
- More about dictionaries, tuples and sets:
   - Applying dictionaries. Methods for dictionaries. Applying tuples and tuple notation. Using sets and frozensets.
- Functions:
   - Purpose and definition. Calling a function. Docstrings. Parameter passing and default values. Call-by-value versus call-by-reference. Return values.
- Modules:
   - Applying modules. Importing modules. Provenance of modules. Test code in module. Docstrings.
   - More about functions:
   - Nested function definitions. Name spaces. Scope rules and examples. Function as parameter. Standard functions map and filter. Lambda expressions. Generator functions.
- Exceptions:
   - EAFP motto (Easier to Ask for Forgiveness than Permission). Standard exception types. Own exception types. Catching exceptions. Actions upon catching exceptions. Generating exceptions with raise. Statement with.
- Global overview of the Python Standard Library:
   - Accessing command line parameters. Program exit. Time functions. Filename-globbing. File system tree walk. Using subprocesses. Elementary network facilities. Serialisation.
- Introduction to object orientation:
   - Classes and instances. Data abstraction. Inheritance, Polymorphism. Dynamic binding. Procedural versus object oriented programming.
- Object orientation and classes in Python:
   - Designing classes in Python. Constructor and destructor methods. Inheritance (derived classes). Polymorphism and dynamic binding. Special class methods. Operator overloading. Subclasses for built-in data types.

Blijf op de hoogte van nieuwe ervaringen

Er zijn nog geen ervaringen.
  • Vraag informatie aan over deze cursus. Je ontvangt vanaf dan ook een seintje wanneer iemand een ervaring deelt. Handige manier om jezelf eraan te herinneren dat je wilt blijven leren!
  • Bekijk gerelateerde producten mét ervaringen: Python.

Deel je ervaring

Heb je ervaring met deze cursus? Deel je ervaring en help anderen kiezen. Als dank voor de moeite doneert Springest € 1,- aan Stichting Edukans.

Er zijn nog geen veelgestelde vragen over dit product. Als je een vraag hebt, neem dan contact op met onze klantenservice.

Download gratis en vrijblijvend de informatiebrochure

(optioneel)
(optioneel)
(optioneel)
infoEr is een telefoonnummer vereist om deze informatieaanvraag in behandeling te nemen. (optioneel)
(optioneel)
(optioneel)
(optioneel)

Heb je nog vragen?

(optioneel)