About 2,990,000 results
Open links in new tab
  1. Python program to print your name, roll number, section, …

    In this article, we explored a Python program that prints your name, roll number, section, session, and department on the output screen. We discussed the implementation steps and provided a …

  2. how to print "Hello [your_name]" in output screen of python?

    Mar 17, 2018 · So... if you want your string to be "hello [your name]" you need to put that inside the quotation marks to print it. it would look like this. print(""hello [your name]"")

    Missing:

    • Program

    Must include:

  3. Python: Display your details like name, age, address in ... - w3resource

    Apr 16, 2025 · Write a Python program that accepts name, age, and address as input and displays them in uppercase. Write a script that asks for user details (name, age, address) and …

  4. Write Your Name In Python Using Turtle - Pythondex

    Jul 3, 2023 · In this tutorial I will show you how to write your name in python using turtle, We will use the write() method in turtle to write your name it is a turtle method which allows you to …

  5. Write a Python Program to Print Your Name and age Take the …

    Apr 3, 2024 · Here's the Python code we'll break down: print(f"Hello, {name}! You are {age} years old.") Step-by-Step Explanation. This line uses the input function to prompt the user with a …

  6. Python 3 Program to print the Initials of a name and with surname

    Jun 8, 2017 · Program: Input a name and Print the Initials and with surname. if a==" ": value=a. if b==0: print(user[0]) elif user[b]==" ": print(user[b+1]) print(user[c]) for b in range (0,value): if …

  7. write a python program to display your name using interactive

    Nov 22, 2022 · In this article let's try to learn how to print your name interactively using python. In this Python program you have to ask a user to enter a name so that it is of string format. once …

  8. Write a python program to print your name - Brainly

    Jul 1, 2019 · Python Program to print your name :-Person=input('Enter your name?') Print('Hello Mr, person) Python is a high level programming language; Python can bes used on a server …

  9. Python program to print Your name 5 times on the screen

    Write a program to print your name 5 times on the screen . Sample Output. The objective of the code is to print the name 5 times on the screen . Code (Python):- Output:- Find the number of …

  10. Python program to read and print your name and address

    Dec 25, 2019 · # Python program to read and print your name and address using the input() function. name = input("Enter your name: ") print (name) address = input("Enter your …

  11. Some results have been removed