G
G
globuser2015-01-20 20:17:52
Python
globuser, 2015-01-20 20:17:52

Where can I download Python video courses (normal, whole, all at once)?

Torrents, video archives or some large media libraries where you can download video tutorials on learning and programming skills in the Python language, practice and theory, both in Russian and in English? There is on youtube, but everything is broken and scattered there.
Maybe someone knows the resources where you can download the entire video collection or archive at once, without splitting, so that later you can watch, for example, from a device without Internet access.
In general, please share links to media and video resources on learning the Python language.
I would very much like to find resources (video tutorials and video lectures, videos from conferences, master classes, interviews) with the ability to save to a hard drive and download, for offline viewing.

Answer the question

In order to leave comments, you need to log in

7 answer(s)
C
comradegoryaev, 2015-01-20
@comradegoryaev

Look for "python pluralsight" on roottracker

Z
zasqer, 2015-05-20
@zasqer

There is a course in English https://www.edx.org/course/introduction-computer-s...
that is taught at MIT

S
Stoned Shaman, 2015-01-20
@StonedShaman

at nm-club

A
A. Schmaltzberg, 2015-01-20
@Senar

Or if you are not a warez fan.... https://www.udemy.com/courses/search/?q=Python&p=1...

I
Igor, 2017-07-24
@JackShcherbakov

And what did you want to do? Do not submit the form if you do not select a city? If so, what are you doing there ...
The form is sent when the input type="submit" is clicked. Accordingly, you need to handle the click event on this button. The change event is not needed at all, the form submission does not depend on it, if I understand correctly what you wanted to do.
https://jsfiddle.net/02kne0da/

L
Larisa Moroz, 2017-07-24
@larisamoroz

1. This piece of code blocks form submission forever, regardless of subsequent changes to your select:

if($('select :selected').val() == '--Выберите город--'){
    $('input[type="submit"]').click(function(evt){
          evt.preventDefault();
    });
}

2. Before. as the user touches this select, form submission will NOT be blocked.
You need to do the opposite, before submitting the form, check the value of selecta and if nothing is selected there, then block the submission once

T
ThunderCat, 2017-07-24
@ThunderCat

if($('select :selected').val() == '--Select city--'){

well, make a console.log of this select value. Is it really so difficult to see what went wrong and at what stage?

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question