Python Day 3 - Input and Output

Published on December 27, 2024

Description

Basic Input and Output: Write a program that reads a single input from the user and prints it to the console. For example, if the user enters their name, the program should output: ""Hello, {name}"" Handling Different Data Types: Extend the program to read and print different types of inputs. Ensure the inputs are properly converted to their respective types and then printed. The program should ask the user to enter: string, integer and floating-point number

Learn to code, one day at a time