Python
3
Вклад в тег
import datetime
import calendar
date = datetime.date.today()
weekday = datetime.date.today().weekday()
count_mounth = calendar.weekday(date.year, date.month, 1)
if weekday == 6:
if count_mounth == 0:
print(f'Сегодня {str(date.day//7)} воскресенье месяца!!!')
else:
print(f'Сегодня {str(date.day//7 + 1)} воскресенье месяца!!!')
import requests
import json
heroes_list = ['Hulk', 'Captain america', 'Thanos']
#создадим словарь, в котором будет находиться информация о интеллекте каждого героя (изначально 0)
intelligence_dict = {'Hulk': 0, 'Captain america': 0, 'Thanos': 0}
url = 'https://www.superheroapi.com/api.php/2619421814940190/search/'
for hero in heroes_list:
hero_dict = json.loads(requests.get(url + hero).content)
intelligence_dict[hero] = int(hero_dict['results'][0]['powerstats']['intelligence'])