Этот коммит содержится в:
Danil
2025-10-24 12:02:39 +03:00
родитель a80712b7c4
Коммит 7a2bc89a24
3 изменённых файлов: 16 добавлений и 3 удалений

Просмотреть файл

@@ -20,9 +20,9 @@ import cmath, math, random, time
### Решение
```
#1
res = divmod(math.floor(round(cmath.phase(0.2+0.8j), 2) * 20), 3)
res = divmod((round(cmath.phase(0.2+0.8j), 2) * 20), 3)
print(res)
(8, 2)
(8.0, 2.6000000000000014)
#2
Msk = time.localtime()
print(Msk)