У нас вы можете посмотреть бесплатно Python for Absolute Beginners: Lesson 3 Learn the Basics Step by Step!" или скачать в максимальном доступном качестве, видео которое было загружено на ютуб. Для загрузки выберите вариант из формы ниже:
Если кнопки скачивания не
загрузились
НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием видео, пожалуйста напишите в поддержку по адресу внизу
страницы.
Спасибо за использование сервиса ClipSaver.ru
"What do you want to learn in Python next? Drop your suggestions below! 👇🐍" "Did you follow along with the code? Share your experience in the comments! 💻✨" "Missed the live session? No worries! The replay is here for you. 🚀" "Which lesson was your favorite so far? Lesson 1, 2, or 3? Let me know! 📝" "Subscribe and hit the bell icon 🔔 for more Python lessons coming your way!" Here is the code: age = 25 # int height = 5.9 # float name = "Alice" # string Displaying types of variables print("Age is of type:", type(age)) print("Height is of type:", type(height)) print("Name is of type:", type(name)) Taking input from the user user_name = input("What is your name? ") user_age = int(input("How old are you? ")) # Convert input to int user_height = float(input("What is your height in meters? ")) # Convert input to float Displaying user input print(f"Hello {user_name}, you are {user_age} years old and {user_height} meters tall.")