-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome6.py
214 lines (187 loc) · 5.01 KB
/
home6.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
import random
L = random.sample(range(30), 10)
def func1():
i=0
for x in L:
if x==9:
i+=1
return i
#print(func1())
L = list(map(lambda x: random.randint(0, 100), range(20)))
def func2():
chet = 0
nechet = 0
for x in L:
if x%2==0:
chet+=1
else:
nechet+=1
print(L)
print("chet= "+str(chet)+"\npnechet= "+str(nechet))
#func2()
def func3():
"""
Пользователь должен ввести последовательность чисел через пробел.Для каждого числа
выведите слово YES (в отдельной строке), если это число ранее встречалось в последовательности
или NO, если не встречалось.
:return:
"""
try:
L = input("input range: ").strip().split(" ")
S = set()
if len(L)==0:
return
for x in L:
if x in S:
print("Yes "+ x)
else:
S.add(x)
print("No "+x)
except BaseException as ex:
print(ex)
#func3()
def func4():
"""
Написать функцию, которая будет принимать пароль. Если в пароле есть буквы и цифры и его
длина не менее 10 символов вывести: “Your password is strong.” в противном случае
“Your password is not strong enough.”
:return:
"""
L = input("input password: ")
char = False
digit = False
di = 0
for x in L:
if not char and x.isupper():
char = True
elif not digit and x.isdigit():
di += 1
if di == 5:
digit = True
if char and digit:
break
if char and digit and len(L)>9:
print("Your password is strong.")
else:
print("Your password is not strong enough.")
#func4()
def func5():
try:
digit = int(input("input digit: "))
i = 1
fact = 1
while i!=digit:
i+=1
fact*=i
print(fact)
except BaseException as ex:
print(ex)
#func5()
def func6():
score = 0
while True:
L = random.sample(range(30), 2)
digit = input("sum of range {}: ".format(L))
if digit == 'q':
break
elif digit.isdigit() and int(digit) == sum(L):
score+=1
print("your score: "+ str(score))
print("your score: " + str(score))
#func6()
def func7(n):
#n = random.randint(2, 5)
while True:
if n==1:
break
elif n%2==0:
n /= 2
else:
n = 3*n+1
print("n= " + str(n))
#func7(5)
def func8(x):
i=2
L = [0,1]
while i<=x:
L.append(L[i-2]+L[i-1])
i+=1
print(L)
#func8(25)
def pr(L):
print(" <------>")
for x in L:
print(x)
def func9():
"""
9) Дано нечетное число n. Создайте вложеный список из n×n элементов, заполнив его
символами "."(каждый элемент массива является строкой из одного символа). Затем заполните
символами "*" среднюю строку массива, средний столбец массива, главную диагональ и побочную
диагональ. В результате должны образовывать изображение снежинки. Выведите полученный массив
на экран, разделяя элементы массива пробелами.
:return:
"""
n=2
while True:
n = random.randint(2,5)
if n%2!=0:
break
L = list(range(n))
i=0
while i < n:
L[i] = list(range(n))
ii = 0
while ii < n:
L[i][ii] = "."
ii+=1
i+=1
pr(L)
###############################################################
i = n//2
ii = 0
while ii<n:
L[i][ii]="*"
ii+=1
pr(L)
##############################################################
i=0
ii=n//2
while i<n:
L[i][ii]="*"
i+=1
pr(L)
#############################################################
i=0
ii=0
while i<n:
L[i][ii]="*"
i+=1
ii+=1
pr(L)
#################################################################
i=0
ii=-1
while i<n:
L[i][ii]="*"
i+=1
ii-=1
pr(L)
func9()
def home_1_FromBeetroot():
print(list(range(1,100)))
#home_1_FromBeetroot()
def home_2_FromBeetroot():
L = []
while True:
_ = input (" input the name of a car: ")
if _ == 'q':
return
L.append(_)
print(L)
def home_3_FromBeetroot():
L = list(range(1,15))
i = -1
while i > -len(L)-1:
print(L[i])
i-=1
#home_3_FromBeetroot()