Computer Science, asked by OctopusYT, 9 months ago


Write "Welcome" message ten times
program display on the screen using for loop
Pls show with the tracing​

Answers

Answered by Anonymous
8

Explanation:

Program:

name = input ("Enter name :")

print("Welcome",name)

According to the expectation of the question, we must allow the user to key-in the input.

So, use "input" statement. The below statement will prompt the user to text the name.

name= input("Enter name:")

Then we need to welcome the person with the name. "Print" statement is used to display text or content to the user.

Print("Welcome",name) - This statement would concatenate the welcome message along the name which is nothing but the input given by the user.

To Know More:

https://brainly.in/question/9040662

How to concatenate a string with numbers in Python?

https://brainly.in/question/9029927

Concatenated string with uncommon characters in Python?

<div style="color: #FFFFFF; font: normal 18px arial, sans-serif; background-color: #347c17; border: #ff0000 4px solid; width: 70%; margin: 0 auto; padding: 4px 5px 3px 5px; -moz-border-radius: 17px; -webkit-border-radius: 17px; border-radius: 17px; -moz-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.20); -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.20); box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.20);"><marquee scrolldelay="250"><b><u>Hello</u> </b></marquee>

<p style="color:cyan;font-family:cursive;background:black;font size:40px;">..</p> lijiye phone apke liye B's ghar me rahhiye ok ji

<p style="color:blue;font-family:cursive;background:pink;font-size:30px;">Hope it helps Dear..</p>

__________________________________

10thnx inbox

_____________________________

Answered by aaravraj1223
3

Answer:

name = input('what is your name? -')

welcome = input('welcome',name)

Explanation:

Similar questions