@ru_python

Страница 8327 из 9768
Tigran
10.03.2019
13:27:32
Короч, анализировать, какой вариант быстрее всего, проще, когда ты загуглил вопрос и получил представление хотя бы о том, какие варианты вообще есть

hachiman
10.03.2019
13:28:28
потом разделишь задачу по потокам или железкам

Mikita
10.03.2019
13:31:10
Так тебе из каждого тапла первый элемент нужен, не?
А у меня получается тапл. А как сделать чтобы список?

Google
Tigran
10.03.2019
13:31:28
Как насчёт пройти туториал по питону?

Mikita
10.03.2019
13:31:28
спс

я это и делаю

Matvey
10.03.2019
13:39:44
Всем привет, кто-нибудь решает на mlcourse ai соревнование cath me if you can?

f472_
10.03.2019
13:40:24
hachiman
10.03.2019
13:41:15
Что..? ?
<iframe> <input></input> </iframe>

Что..? ?
он не найдет если элемент внутри фрейма, тебе надо сказать (написаТь) чтобы искал элемент фнутри фрейма

Shieldy
10.03.2019
13:43:31
Добро пожаловать, @quod_pura! Не забудь ознакомиться с правилами чата: https://t.me/ru_python/802295!

hachiman
10.03.2019
13:45:20
Да, в iframe. Можешь подсказать, как искать в iframe?)
https://stackoverflow.com/questions/49028909/selenium-cant-find-elements-by-xpath

Shieldy
10.03.2019
13:46:31
Добро пожаловать, @pinakoladaboy! Не забудь ознакомиться с правилами чата: https://t.me/ru_python/802295!

---+--
10.03.2019
13:47:58
Приветствую господа ! Подскажите пожалуйста как реализовать задачу ? Есть задаче следущие критерии : Нужно организовать стрим радио : 1 ) Участников 2 и более человек 2) Возможность подключать собеседников и отключать собеседника.

Google
---+--
10.03.2019
13:58:10
это Веб ?
желательно веб, но изначальная идея развернуть это на rasberri

hachiman
10.03.2019
14:03:00
желательно веб, но изначальная идея развернуть это на rasberri
ща листаю результатов из гитхада на поиск "radio stream", не знаю работает ли не https://github.com/amisan/AnonStream

Бумеранг
10.03.2019
14:03:02
Как написать вот такого бота можете дать ссылку на урок



Алексей
10.03.2019
14:04:11
Вот вебинарная площадка

http://docs.bigbluebutton.org/install/install.html#minimum-server-requirements

Алексей
10.03.2019
14:04:51
Да

Костя
10.03.2019
14:04:59
для ботов продающих наркоту уроков нет

hachiman
10.03.2019
14:06:19
перейдем в личку ?
сорян мне нечего добавить

---+--
10.03.2019
14:07:12
сорян мне нечего добавить
не бойся), много вопросов не будет ?

/dev
10.03.2019
14:07:38
---+--
10.03.2019
14:07:51
ну как бэ сорян

А понятые будут?
да это понятно что абстрактно, но не знад просто как описать

hachiman
10.03.2019
14:08:24
---+--
10.03.2019
14:10:06
Дурочка яж про стрим
а при чем тут дурочка??

Mark
10.03.2019
14:10:42


Shieldy
10.03.2019
15:02:40
Добро пожаловать, @darknetunknown! Не забудь ознакомиться с правилами чата: https://t.me/ru_python/802295!

Google
?
10.03.2019
15:04:12
привет всем помогите решать

Tasks 1. You are given a string Q. The string contains only lowercase characters.Your task is to print all possible substrings of size q made of the string letters in alphabetical sorted order.Print the substrings on separate lines.Input is a single line containing the space separated string Q and the integer value q. input: badc 2 output: ab ac ad ba bc bd ca cb cd da db dc 2. There is a list of N items together with their prices. Print each item name and net price in order of its first occurrence. Input: The number of items, N The next N lines contains the item's name and price, separated by a space Example input: 9 BANANA FRIES 12 POTATO CHIPS 30 APPLE JUICE 10 CANDY 5 APPLE JUICE 10 CANDY 5 CANDY 5 CANDY 5 POTATO CHIPS 30 Example output: BANANA FRIES 12 POTATO CHIPS 60 APPLE JUICE 20 CANDY 20 3. Scrape Youtube trending videos (url: https://www.youtube.com/feed/trending) , you must get output in csv and json files which will contain: Title, url of video, username of uploader, Duration, Views. Be sure to get cleaned data. 4. Develop a crawler for Staff.am and get job titles and company names from all postings. Once done, you should calculate and plot top 5 most frequent words in job postings and company names (separately) top understand the most active companies on the website and the most demanded positions. You are encouraged to clean the text data if you see that the most frequent words are not informative (i.e. if Armenia is the most frequent word in company names, probably one should remove Armenia from strings) 5. Scrape all movie titles from https://www.rogerebert.com/reviews 6. Create a utils.py file which will have the following classes/functions defined: • Scrape_All class, which will scrape from a given page all: a.hyperlinks (<a>) and provide the absolute link if relative one is given in the page, b. headings and paragraphs and merge them inside one string with a new line between different headings/paragraphs, without distorting order). c. custom tags provided by the user (i.e. if the user provides li.author or similar input then all the list items that have class author must be scraped. • Super_list class, which will take a list as input and provide the following functionalities: a. untilst function, that will return the unlisted version of a nested list or the same one if list was not nested, b. merge function, that will merge all the elements of any list into strings, c. find function that will take a type argument as an input. If type =: i. number, then it will return all the list elements that include a number, ii. letter, then it will return all the list elements that include a letter. • Cleaner class, which will take a string as an input and provide the following methods: a. tokenize into words/sentences, b. lemmatize, clean stopwords, c. make plural/singular, d. uppercase/lowercase, e. draw frequency distributions of words. 7. Scrape rates.am : Give us a program which will ask currency then find most efficient exchange rate in banks or exchanges points for both buy or sell.

Stanislav
10.03.2019
15:10:16
Tasks 1. You are given a string Q. The string contains only lowercase characters.Your task is to print all possible substrings of size q made of the string letters in alphabetical sorted order.Print the substrings on separate lines.Input is a single line containing the space separated string Q and the integer value q. input: badc 2 output: ab ac ad ba bc bd ca cb cd da db dc 2. There is a list of N items together with their prices. Print each item name and net price in order of its first occurrence. Input: The number of items, N The next N lines contains the item's name and price, separated by a space Example input: 9 BANANA FRIES 12 POTATO CHIPS 30 APPLE JUICE 10 CANDY 5 APPLE JUICE 10 CANDY 5 CANDY 5 CANDY 5 POTATO CHIPS 30 Example output: BANANA FRIES 12 POTATO CHIPS 60 APPLE JUICE 20 CANDY 20 3. Scrape Youtube trending videos (url: https://www.youtube.com/feed/trending) , you must get output in csv and json files which will contain: Title, url of video, username of uploader, Duration, Views. Be sure to get cleaned data. 4. Develop a crawler for Staff.am and get job titles and company names from all postings. Once done, you should calculate and plot top 5 most frequent words in job postings and company names (separately) top understand the most active companies on the website and the most demanded positions. You are encouraged to clean the text data if you see that the most frequent words are not informative (i.e. if Armenia is the most frequent word in company names, probably one should remove Armenia from strings) 5. Scrape all movie titles from https://www.rogerebert.com/reviews 6. Create a utils.py file which will have the following classes/functions defined: • Scrape_All class, which will scrape from a given page all: a.hyperlinks (<a>) and provide the absolute link if relative one is given in the page, b. headings and paragraphs and merge them inside one string with a new line between different headings/paragraphs, without distorting order). c. custom tags provided by the user (i.e. if the user provides li.author or similar input then all the list items that have class author must be scraped. • Super_list class, which will take a list as input and provide the following functionalities: a. untilst function, that will return the unlisted version of a nested list or the same one if list was not nested, b. merge function, that will merge all the elements of any list into strings, c. find function that will take a type argument as an input. If type =: i. number, then it will return all the list elements that include a number, ii. letter, then it will return all the list elements that include a letter. • Cleaner class, which will take a string as an input and provide the following methods: a. tokenize into words/sentences, b. lemmatize, clean stopwords, c. make plural/singular, d. uppercase/lowercase, e. draw frequency distributions of words. 7. Scrape rates.am : Give us a program which will ask currency then find most efficient exchange rate in banks or exchanges points for both buy or sell.
Нормально вопрос задай. Вместо тебя код писать никто не будет

Покажи то что написал и где застрял

?
10.03.2019
15:10:57
Покажи то что написал и где застрял
работу хочу устроиться там тест отправили не могу рещать ?

Stanislav
10.03.2019
15:11:43
Опять же, за тебя решать никто не будет

?
10.03.2019
15:12:11
еще не написал хочу чтоб помогли написать

Stanislav
10.03.2019
15:12:12
Не нам на работу устраиваться

еще не написал хочу чтоб помогли написать
Вот как напишешь что-то, и задашь нормальный вопрос то возвращайся

А так то тебе не в этот чат

?
10.03.2019
15:12:40
хорошо

Stanislav
10.03.2019
15:12:51
хорошо
t.me/ru_python_beginners

?
10.03.2019
15:13:16
спасибо очень

Саня
10.03.2019
15:13:40
там его совсем проигнорят )

Stanislav
10.03.2019
15:14:17
там его совсем проигнорят )
Ну так заходить в чат с формулировкой «Решите мне а то на работу устроиться хочу» тоже не вариант

Саня
10.03.2019
15:19:04
не. Но здесь чуть ли не каждый день такие появляются

Just
10.03.2019
15:20:51
Tasks 1. You are given a string Q. The string contains only lowercase characters.Your task is to print all possible substrings of size q made of the string letters in alphabetical sorted order.Print the substrings on separate lines.Input is a single line containing the space separated string Q and the integer value q. input: badc 2 output: ab ac ad ba bc bd ca cb cd da db dc 2. There is a list of N items together with their prices. Print each item name and net price in order of its first occurrence. Input: The number of items, N The next N lines contains the item's name and price, separated by a space Example input: 9 BANANA FRIES 12 POTATO CHIPS 30 APPLE JUICE 10 CANDY 5 APPLE JUICE 10 CANDY 5 CANDY 5 CANDY 5 POTATO CHIPS 30 Example output: BANANA FRIES 12 POTATO CHIPS 60 APPLE JUICE 20 CANDY 20 3. Scrape Youtube trending videos (url: https://www.youtube.com/feed/trending) , you must get output in csv and json files which will contain: Title, url of video, username of uploader, Duration, Views. Be sure to get cleaned data. 4. Develop a crawler for Staff.am and get job titles and company names from all postings. Once done, you should calculate and plot top 5 most frequent words in job postings and company names (separately) top understand the most active companies on the website and the most demanded positions. You are encouraged to clean the text data if you see that the most frequent words are not informative (i.e. if Armenia is the most frequent word in company names, probably one should remove Armenia from strings) 5. Scrape all movie titles from https://www.rogerebert.com/reviews 6. Create a utils.py file which will have the following classes/functions defined: • Scrape_All class, which will scrape from a given page all: a.hyperlinks (<a>) and provide the absolute link if relative one is given in the page, b. headings and paragraphs and merge them inside one string with a new line between different headings/paragraphs, without distorting order). c. custom tags provided by the user (i.e. if the user provides li.author or similar input then all the list items that have class author must be scraped. • Super_list class, which will take a list as input and provide the following functionalities: a. untilst function, that will return the unlisted version of a nested list or the same one if list was not nested, b. merge function, that will merge all the elements of any list into strings, c. find function that will take a type argument as an input. If type =: i. number, then it will return all the list elements that include a number, ii. letter, then it will return all the list elements that include a letter. • Cleaner class, which will take a string as an input and provide the following methods: a. tokenize into words/sentences, b. lemmatize, clean stopwords, c. make plural/singular, d. uppercase/lowercase, e. draw frequency distributions of words. 7. Scrape rates.am : Give us a program which will ask currency then find most efficient exchange rate in banks or exchanges points for both buy or sell.
Решу за $

?
10.03.2019
15:21:16
Решу за $
я не буду понимать так принцип работы

Admin
ERROR: S client not available

Google
Саня
10.03.2019
15:21:17
Решу за $
вот это уже деловой подход )

за $ и обьяснит )

Just
10.03.2019
15:22:20
я не буду понимать так принцип работы
Так я код напишу с комментариями. Как иначе то, если сам ничего не пишешь)))

Max
10.03.2019
15:23:31
No module named 'psycopg2' psycopg2 установил, импортирую как import psycopg2, в чем может быть причина ошибки?

Just
10.03.2019
15:24:45
сколько
За все задачи или за конкретные?

Max
10.03.2019
15:24:49


?
10.03.2019
15:25:16
через pip или pip3 слелал?

10.03.2019
15:25:26
Tasks 1. You are given a string Q. The string contains only lowercase characters.Your task is to print all possible substrings of size q made of the string letters in alphabetical sorted order.Print the substrings on separate lines.Input is a single line containing the space separated string Q and the integer value q. input: badc 2 output: ab ac ad ba bc bd ca cb cd da db dc 2. There is a list of N items together with their prices. Print each item name and net price in order of its first occurrence. Input: The number of items, N The next N lines contains the item's name and price, separated by a space Example input: 9 BANANA FRIES 12 POTATO CHIPS 30 APPLE JUICE 10 CANDY 5 APPLE JUICE 10 CANDY 5 CANDY 5 CANDY 5 POTATO CHIPS 30 Example output: BANANA FRIES 12 POTATO CHIPS 60 APPLE JUICE 20 CANDY 20 3. Scrape Youtube trending videos (url: https://www.youtube.com/feed/trending) , you must get output in csv and json files which will contain: Title, url of video, username of uploader, Duration, Views. Be sure to get cleaned data. 4. Develop a crawler for Staff.am and get job titles and company names from all postings. Once done, you should calculate and plot top 5 most frequent words in job postings and company names (separately) top understand the most active companies on the website and the most demanded positions. You are encouraged to clean the text data if you see that the most frequent words are not informative (i.e. if Armenia is the most frequent word in company names, probably one should remove Armenia from strings) 5. Scrape all movie titles from https://www.rogerebert.com/reviews 6. Create a utils.py file which will have the following classes/functions defined: • Scrape_All class, which will scrape from a given page all: a.hyperlinks (<a>) and provide the absolute link if relative one is given in the page, b. headings and paragraphs and merge them inside one string with a new line between different headings/paragraphs, without distorting order). c. custom tags provided by the user (i.e. if the user provides li.author or similar input then all the list items that have class author must be scraped. • Super_list class, which will take a list as input and provide the following functionalities: a. untilst function, that will return the unlisted version of a nested list or the same one if list was not nested, b. merge function, that will merge all the elements of any list into strings, c. find function that will take a type argument as an input. If type =: i. number, then it will return all the list elements that include a number, ii. letter, then it will return all the list elements that include a letter. • Cleaner class, which will take a string as an input and provide the following methods: a. tokenize into words/sentences, b. lemmatize, clean stopwords, c. make plural/singular, d. uppercase/lowercase, e. draw frequency distributions of words. 7. Scrape rates.am : Give us a program which will ask currency then find most efficient exchange rate in banks or exchanges points for both buy or sell.
По первой задаче смотри как permutation устроен

Max
10.03.2019
15:27:10
через pip или pip3 слелал?
И так, и так, прога работает, когда просто через python ... запускаю, но ломается при python3.7 ...

?
10.03.2019
15:27:32
что то не так установил

10.03.2019
15:27:56
шясь спасибо
По второй можно посплитить и закинуть в словарь

?
10.03.2019
15:28:02
скрин что выдает после открытия через 3.7 кинь

Just
10.03.2019
15:28:13
за все
20$ за задачу

?
10.03.2019
15:28:27
20$ за задачу
спасибо щясь уже рещаю

10.03.2019
15:28:49
Прикольные задачки на краулеры

Google
Just
10.03.2019
15:29:53
Да интересные задачки, не сложные, чисто времени немножко пососут. Первые олимпиадные, остальные на знание веба

Max
10.03.2019
15:30:08


@darknetunknown выше

RigoSex
10.03.2019
15:31:32
Ну вы конечно вспомнили...

10.03.2019
15:32:16
@darknetunknown А что за компания?

Жалко, что в алибабе никому не нужен питон :(

hachiman
10.03.2019
15:33:13
Ну вы конечно вспомнили...
смотрел видео, и бах...

RigoSex
10.03.2019
15:33:43
Меня взяли в контрибучеры на зорплату(дошираки) очень нишевой игры

Страница 8327 из 9768