Skip to content

Instantly share code, notes, and snippets.

View Lavrynenko's full-sized avatar
🌴
Welcome :)

Oleksiy Lavrynenko Lavrynenko

🌴
Welcome :)
View GitHub Profile
import ftplib
import os
import sys
import subprocess
def autorization():
host = str(input('Host?: ')) #FTP
ftp_user = str(input('User?: ')) #Login
ftp_password = str(input('Password?: ')) #Password
@Lavrynenko
Lavrynenko / gist:830b1f71ed2b3aaea6cdbc6280b84786
Created December 23, 2018 18:42
Перемешивание символов
import random
text_fynal = []
texts = str(input('Введите предложение: \n >>> '))
texts = texts.split()
for text in texts:
text_list = []
for simbol in text:
text_list.append(simbol)