Calc/1_3.py
2025-05-12 14:32:49 +03:00

8 lines
419 B
Python
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Какой тип данных содержат переменные book_title и rus_publish_year?
# Проверьте свое предположение, используя функцию `type()` и
# выведите типы переменных на экран с помощью функции print().
rus_publish_year = 2014
print(type(rus_publish_year))
book_title = "Щегол"
print(type(book_title))