Differences

This shows you the differences between two versions of the page.


en:courseware:python_programming:sbu:180705 [2022/07/17 01:19] (current) – created - external edit 127.0.0.1
Line 1: Line 1:
 +This course covers all basic knowledge needed for programming in python. The course designed based on the assumption that students want to work in the software industry, but it's also useful for academic purposes.
  
 +====== Course Calendar & Materials ======
 +
 +All available resources for this course will be added to the following table.
 +
 +^**Session**^**Date**^**Subjects**^**Slides**^**Codes**^**Homework**^**Solutions**^
 +|1|July 5, 2018|Python Philosophy, What is Python, Python 2.x vs Python 3.x, Python Installation and Setup, Why Python, Python Shell, Python Basic Syntax, Variables, Basic Data Types, Operators, Type Conversion, Truth Value Testing, Sequences, Sequence Operators, List Comprehension, String Formatting, Tuples, PyCharm Integrated Development Environment |{{ :courseware:python_programming:resources:slides:python_basics:py_basics_v2.html |}}|-|[[courseware/python_programming/resources/hw/1|1]], [[courseware/python_programming/resources/hw/2|2]], [[courseware/python_programming/resources/hw/3|3]]|-|
 +|2|July 12, 2018|Control Structures, Loops, Sets, Dictionaries, Functions|{{ :courseware:python_programming:resources:slides:python_data_types:py_dtypes.html |}}|[[courseware/python_programming/resources/code/1|1]], [[courseware/python_programming/resources/code/2|2]], [[courseware/python_programming/resources/code/3|3]], [[courseware/python_programming/resources/code/5|4]], [[courseware/python_programming/resources/code/8|5]]|[[courseware/python_programming/resources/hw/4|1]], [[courseware/python_programming/resources/hw/5|2]], [[courseware/python_programming/resources/hw/6|3]]|[[courseware/python_programming/resources/answer/4|1]], [[courseware/python_programming/resources/answer/5|2]],  [[courseware/python_programming/resources/answer/6|3]]|
 +|3|July 26, 2018|Problem Solving, Modules Concepts, time Module, random Module, math Module, dir() Function, Packages in python, Working with Python Package Manager and VirtualEnv|{{ :courseware:python_programming:resources:slides:py_modules.html |}}, {{ :courseware:python_programming:resources:slides:py_libs.html |}}|[[courseware/python_programming/resources/code/6|1]], [[courseware/python_programming/resources/code/7|2]], [[courseware/python_programming/resources/code/4|3]], [[courseware/python_programming/resources/code/9|4]]|[[courseware/python_programming/resources/hw/8|1]], [[courseware/python_programming/resources/hw/9|2]], [[courseware/python_programming/resources/hw/10|3]]|[[courseware/python_programming/resources/answer/8-1|1-1]], [[courseware/python_programming/resources/answer/8-2|1-2]], [[courseware/python_programming/resources/answer/9|2]],  [[courseware/python_programming/resources/answer/10|3]]|
 +|4|August 2, 2018|Writing a real-world program using some well-known high-level python packages|-|[[courseware/python_programming/resources/code/10|1]], [[courseware/python_programming/resources/code/11|2]], [[courseware/python_programming/resources/code/12|3]], [[https://gitlab.com/smmsadrnezh/hotels_price_collector/blob/c2f88cbcdf2e203c58c803a807bac353c9e8f223/requirements.txt|4]], [[https://gitlab.com/smmsadrnezh/hotels_price_collector/blob/c2f88cbcdf2e203c58c803a807bac353c9e8f223/main.py|5]], [[https://gitlab.com/smmsadrnezh/hotels_price_collector/blob/c2f88cbcdf2e203c58c803a807bac353c9e8f223/export.py|6]]|[[courseware/python_programming/resources/hw/11|1]], [[courseware/python_programming/resources/hw/12|2]], [[courseware/python_programming/resources/hw/13|3]]|[[courseware/python_programming/resources/answer/11|1]], [[courseware/python_programming/resources/answer/12-1|2]], [[courseware/python_programming/resources/answer/13|3]]|
 +|5|August 9, 2018|Problem Solving, Object Oriented Concepts,  Class and Object in Python, Instance Objects, Method Objects, Class and Instance Variables, Random Remarks, Inheritance, Multiple Inheritance, Odds and Ends, Special Methods, Underscore in Python|{{ :courseware:python_programming:resources:slides:py_oop.html |}}|[[https://raw.githubusercontent.com/CoreyMSchafer/code_snippets/master/Object-Oriented/1-FirstClasses/oop.py|1]], [[https://raw.githubusercontent.com/CoreyMSchafer/code_snippets/47a213b5e455ad9a082c835b921e6088afe1a6bc/Object-Oriented/3-Class-Static-Methods/oop.py|2]], [[https://raw.githubusercontent.com/CoreyMSchafer/code_snippets/master/Object-Oriented/4-Inheritance/oop-finish.py|3]], [[https://raw.githubusercontent.com/CoreyMSchafer/code_snippets/master/Object-Oriented/5-SpecialMethods/oop_test.py|4]]|[[courseware/python_programming/resources/hw/7|1]]|-|
 +|6|August 16, 2018|Regular Expressions, Exceptions Handling, Version Control Systems|{{ :courseware:python_programming:resources:slides:py_errors.html |}}, {{ :courseware:python_programming:resources:slides:python_regex:py_regex.html |}}, [[https://www.slideshare.net/SMMasoudSadrnezhaad/git-version-control-system-61365105|git-version-control-system]]|-|-|-|
 +|7|September 6, 2018|Some Basic Terms in Software Engineering, Cohesion and Coupling Levels|{{ :courseware:selected_topics_in_software_engineering:resources:slides:cohesion_coupling:coh_coup.html |}}|-|-|-|
 +
 +
 +====== Additional Resources ======
 +
 +  * [[http://www.ict.ru.ac.za/Resources/cspw/thinkcspy3/thinkcspy3_latest|How to Think Like a Computer Scientist: Learning with Python 3]]
 +  * [[https://docs.python.org/3/tutorial/index.html|Official Python Tutorial]]
 +  * [[https://www.tutorialspoint.com/python3/index.htm|Tutorialspoint Python 3 Tutorial]]
 +
 +====== Useful Links ======
 +
 +  * [[https://docs.google.com/forms/d/1jRsupShAG-XSriy8za15MNXka4Z-SjDKX9BKP1iXvdQ/edit#|Class Survey]]
 +  * [[http://pyschool.net|A web-based environment for teachers in Python classes]]
 +  * [[https://www.jetbrains.com/student/|Getting Jetrains Educational License]]
 +  * [[https://www.python.org/ftp/python/3.7.0/python-3.7.0.exe|Download Python 3.7.0 for Windows 32-bit]]
 +  * [[https://www.python.org/ftp/python/3.7.0/python-3.7.0-amd64.exe|Download Python 3.7.0 for Windows 64-bit]]
 +  * [[https://download.jetbrains.com/python/pycharm-professional-2018.1.4.tar.gz|Pycharm 2018 for Linux]]
 +  * [[https://download.jetbrains.com/python/pycharm-professional-2018.1.4.exe|Pycharm 2018 for Windows]]
 +  * [[https://download.jetbrains.com/python/pycharm-professional-2018.1.4.dmg|Pycharm 2018 for Mac]]
 +
 +
 +====== What's the next? ======
 +
 +  * Advanced Programming in Python
 +  * Use Python to build web applications with Django
 +  * Web Scraping in Python