1.
#Ввод: 1 2 3 4 5 6 7
massiv=map(int,input().split(" "))
for i in massiv:
if i%2==0:
print(i,end=" ")
2.
massiv1=input().split(" ")
massiv2=input().split(" ")
set(massiv1).issubset(massiv2)
def check(lst, sub):
for i in range(0, len(lst)):
if lst[i:i+len(sub)] == sub:
return True
return False
if check(massiv1,massiv2) or check(massiv2,massiv1):
print("Списки совпадают")
else:
print("Не совпадают")
3.
string=input()
lcount=0
bgcount=0
for i in string:
if not i.isdigit() and i!=" ":
if i.islower():
lcount+=1
elif not i.islower():
bgcount+=1
print("Заглавных букв:", bgcount,"Строчных букв",lcount)
4.
def smalltobig(string):
string=string.lower()
string=string[0].upper() + string[1:]
return string
stroka=input().split(" ")
for i in stroka:
print(smalltobig(i), end=" ")
Объяснение:
Можно воспользоваться функцией strftime() для преобразования текущей даты в нужный формат
import datetime as dt
today = dt.datetime.today()
print('Current date and time:', today)
print('Current year:', today.strftime("%Y"),
' Month of year:', today.strftime("%B"))
print('Week number of the year:', today.strftime("%W"),
'Weekday of the week:', today.strftime("%w") )
print('Day of year:', today.strftime("%j"), 'Day of the month:',
today.strftime("%d"), 'Day of week:', today.strftime("%A"))
Питон очень привередлив с отступами - после копирования, надо правильно выставить отступы
1.
#Ввод: 1 2 3 4 5 6 7
massiv=map(int,input().split(" "))
for i in massiv:
if i%2==0:
print(i,end=" ")
2.
massiv1=input().split(" ")
massiv2=input().split(" ")
set(massiv1).issubset(massiv2)
def check(lst, sub):
for i in range(0, len(lst)):
if lst[i:i+len(sub)] == sub:
return True
return False
if check(massiv1,massiv2) or check(massiv2,massiv1):
print("Списки совпадают")
else:
print("Не совпадают")
3.
string=input()
lcount=0
bgcount=0
for i in string:
if not i.isdigit() and i!=" ":
if i.islower():
lcount+=1
elif not i.islower():
bgcount+=1
print("Заглавных букв:", bgcount,"Строчных букв",lcount)
4.
def smalltobig(string):
string=string.lower()
string=string[0].upper() + string[1:]
return string
stroka=input().split(" ")
for i in stroka:
print(smalltobig(i), end=" ")
Объяснение:
Можно воспользоваться функцией strftime() для преобразования текущей даты в нужный формат
import datetime as dt
today = dt.datetime.today()
print('Current date and time:', today)
print('Current year:', today.strftime("%Y"),
' Month of year:', today.strftime("%B"))
print('Week number of the year:', today.strftime("%W"),
'Weekday of the week:', today.strftime("%w") )
print('Day of year:', today.strftime("%j"), 'Day of the month:',
today.strftime("%d"), 'Day of week:', today.strftime("%A"))
Питон очень привередлив с отступами - после копирования, надо правильно выставить отступы