-
Notifications
You must be signed in to change notification settings - Fork 499
Add lesson01 & lesson02 #16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
imam-i
wants to merge
8
commits into
pablorus:master
Choose a base branch
from
imam-i:Imam.Alishaev_lessons
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,43 @@ | ||
|
||
# Задача-1: Дано произвольное целое число, вывести поочередно цифры исходного числа | ||
__author__ = 'Алишаев Имам Курбанмагомедович' | ||
|
||
# Задача-1: Дано произвольное целое число (число заранее неизвестно). | ||
# Вывести поочередно цифры исходного числа (порядок вывода цифр неважен). | ||
# Подсказки: | ||
# * постарайтесь решить задачу с применением арифметики и цикла while; | ||
# * при желании решите задачу с применением цикла for. | ||
|
||
# код пишем тут... | ||
arbitrary_number = 58375 | ||
for char in str(arbitrary_number): | ||
print(char) | ||
|
||
# Задача-2: Исходные значения двух переменных запросить у пользователя. | ||
# Поменять значения переменных местами. Вывести новые значения на экран. | ||
# Не нужно решать задачу так: print("a = ", b, "b = ", a) - это неправильное решение! | ||
# Подсказка: | ||
# * постарайтесь сделать решение через дополнительную переменную | ||
# или через арифметические действия | ||
# Не нужно решать задачу так: | ||
# print("a = ", b, "b = ", a) - это неправильное решение! | ||
|
||
var1 = str(input('Введите первую переменную: ')) | ||
var2 = str(input('Введите вторую переменную: ')) | ||
|
||
var1, var2 = var2, var1 | ||
|
||
print(var1) | ||
print(var2) | ||
|
||
# Задача-3: Запросите у пользователя его возраст. Если ему есть 18 лет, выведите: "Доступ разрешен", | ||
# Задача-3: Запросите у пользователя его возраст. | ||
# Если ему есть 18 лет, выведите: "Доступ разрешен", | ||
# иначе "Извините, пользование данным ресурсом только с 18 лет" | ||
try: | ||
age = int(input('Введите свой возраст: ')) | ||
if age < 0: | ||
print('Вы ввели число меньше 0!') | ||
elif age >= 18: | ||
print('Доступ разрешён!') | ||
else: | ||
print('Извините, пользование данным ресурсом разрешено только с 18 лет!') | ||
except: | ||
print('Вы ввели не число!') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,56 @@ | ||
__author__ = '' | ||
|
||
__author__ = 'Алишаев Имам Курбанмагомедович' | ||
|
||
# Задача-1: Дано произвольное целое число, вывести самую большую цифру этого числа. | ||
# Например, дается x = 58375. Нужно вывести максимальную цифру в данном числе, т.е. 8. | ||
# Подразумевается, что мы не знаем это число заранее. Число приходит в виде целого беззнакового. | ||
# Например, дается x = 58375. | ||
# Нужно вывести максимальную цифру в данном числе, т.е. 8. | ||
# Подразумевается, что мы не знаем это число заранее. | ||
# Число приходит в виде целого беззнакового. | ||
# Подсказки: | ||
# * постарайтесь решить задачу с применением арифметики и цикла while; | ||
# * при желании и понимании решите задачу с применением цикла for. | ||
|
||
arbitrary_number = 58375 | ||
cher_max = 0 | ||
for char in str(arbitrary_number): | ||
if int(char) > int(cher_max): | ||
cher_max = char | ||
print(cher_max) | ||
|
||
|
||
# Задача-2: Исходные значения двух переменных запросить у пользователя. | ||
# Поменять значения переменных местами. Вывести новые значения на экран. | ||
# Решите задачу, используя только две переменные. | ||
# Подсказки: | ||
# * постарайтесь сделать решение через действия над числами; | ||
# * при желании и понимании воспользуйтесь синтаксисом кортежей Python. | ||
|
||
var1 = str(input('Введите первую переменную: ')) | ||
var2 = str(input('Введите вторую переменную: ')) | ||
|
||
var1, var2 = var2, var1 | ||
|
||
print(var1) | ||
print(var2) | ||
|
||
# Задача-3: Напишите программу, вычисляющую корни квадратного уравнения вида ax2 + bx + c = 0. | ||
# Для вычисления квадратного корня воспользуйтесь функцией sqrt() модуля math | ||
# Задача-3: Напишите программу, вычисляющую корни квадратного уравнения вида | ||
# ax² + bx + c = 0. | ||
# Коэффициенты уравнения вводятся пользователем. | ||
# Для вычисления квадратного корня воспользуйтесь функцией sqrt() модуля math: | ||
# import math | ||
# math.sqrt(4) - вычисляет корень числа 4 | ||
print('ax² + bx + c = 0') | ||
a = int(input('Введите a:')) | ||
b = int(input('Введите b:')) | ||
c = int(input('Введите c:')) | ||
D = (b ** 2) - (4 * a * c) | ||
if D > 0: | ||
x1 = ((-b) - (D ** 0.5)) / (2 * a) | ||
x2 = ((-b) + (D ** 0.5)) / (2 * a) | ||
print('X1 =', x1) | ||
print('X2 =', x2) | ||
elif D == 0: | ||
x1 = (-b) / (2 * a) | ||
print('Уравнение имеет один корень X = ', x1) | ||
elif D < 0: | ||
print('Уравнение не имеет корней') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,79 @@ | ||
__author__ = 'Алишаев Имам Курбанмагомедович' | ||
|
||
# Задача-1: | ||
# Дан список, заполненный произвольными целыми числами, получите новый список, элементами которого будут | ||
# квадратные корни элементов исходного списка, но только если результаты извлечения корня не имеют десятичной части и | ||
# Дан список, заполненный произвольными целыми числами, получите новый список, | ||
# элементами которого будут квадратные корни элементов исходного списка, | ||
# но только если результаты извлечения корня не имеют десятичной части и | ||
# если такой корень вообще можно извлечь | ||
# Пример: Дано: [2, -5, 8, 9, -25, 25, 4] Результат: [3, 5, 2] | ||
import math | ||
list_number = [2, -5, 8, 9, -25, 25, 4] | ||
list_number_new = [] | ||
for number in list_number: | ||
if number >= 0: | ||
_number = math.sqrt(number) | ||
if _number.is_integer(): | ||
list_number_new.append(int(_number)) | ||
print(list_number_new) | ||
|
||
# Задача-2: Дана дата в формате dd.mm.yyyy, например: 02.11.2013. | ||
# Ваша задача вывести дату в текстовом виде, например: второе ноября 2013 года. | ||
# Склонением пренебречь (2000 года, 2010 года) | ||
|
||
# Задача-3: Напишите алгоритм, заполняющий список произвольными целыми числами в диапазоне от -100 до 100 | ||
# В списке должно быть n - элементов | ||
# Подсказка: для получения случайного числа используйте функцию randint() модуля random | ||
list_day = ['первое', 'второе', 'третье', 'четвёртое', 'пятое', 'шестое', 'седьмое', 'восьмое', 'девятое', 'десятое', | ||
'одиннадцатое', 'двенадцатое', 'тринадцатое', 'четырнадцатое', 'пятнадцатое', 'шестнадцатое', 'семнадцатое', 'восемнадцатое', | ||
'девятнадцатое', 'двадцатое'] | ||
list_day2 = ['двадцать', 'тридцатое', 'тридцать'] | ||
list_month = ['января', 'февраля', 'марта', 'апреля', 'мая', 'июня', 'июля', 'августа', 'сентября', 'октября', 'ноября', 'декабря'] | ||
|
||
data_var = '02.11.2013' | ||
|
||
_day = int(data_var[0:2]) | ||
_month = int(data_var[3:5]) | ||
_year = int(data_var[6:]) | ||
_day_str = '' | ||
_month_str = '' | ||
|
||
# Дата | ||
if _day <= 20: | ||
_day_str = list_day[_day - 1] | ||
elif _day <= 29: | ||
_day_str = list_day2[0] + ' ' + list_day[_day - 21] | ||
elif _day == 30: | ||
_day_str = list_day2[1] | ||
else: | ||
_day_str = list_day2[2] + ' ' + list_day[0] | ||
|
||
# Месяц | ||
_month_str = list_month[_month - 1] | ||
|
||
print(_day_str, _month_str, _year, 'года') | ||
|
||
# Задача-3: Напишите алгоритм, заполняющий список произвольными целыми числами | ||
# в диапазоне от -100 до 100. В списке должно быть n - элементов. | ||
# Подсказка: | ||
# для получения случайного числа используйте функцию randint() модуля random | ||
import random | ||
list_random_numder = [] | ||
i = 0 | ||
while i <= 20: | ||
list_random_numder.append(random.randint(-100, 100)) | ||
i += 1 | ||
print(list_random_numder) | ||
|
||
# Задача-4: Дан список, заполненный произвольными целыми числами. | ||
# Получите новый список, элементами которого будут: | ||
# а) неповторяющиеся элементы исходного списка: | ||
# например, lst = [1, 2, 4, 5, 6, 2, 5, 2], нужно получить lst2 = [1, 2, 4, 5, 6] | ||
# б) элементы исходного списка, которые не имеют повторений: | ||
# например, lst = [1, 2, 4, 5, 6, 2, 5, 2], нужно получить lst2 = [1, 4, 6] | ||
# а) решение | ||
list_random_numder_a = list(set(list_random_numder)) | ||
print(list_random_numder_a) | ||
|
||
# Задача-4: Дан список, заполненный произвольными целыми числами | ||
# Получите новый список, элементами которого будут только уникальные элементы исходного | ||
# Например, lst = [1,2,4,5,6,2,5,2], нужно получить lst2 = [1,4,6] | ||
# б) решение | ||
list_random_numder_b = [] | ||
for itm_list in list_random_numder: | ||
if list_random_numder.count(itm_list) == 1: | ||
list_random_numder_b.append(itm_list) | ||
print(list_random_numder_b) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Вот тут надо бы не хардкодить