Write "Welcome" message ten times
program display on the screen using for loop
Pls show with the tracing
Answers
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?
lijiye phone apke liye B's ghar me rahhiye ok ji
__________________________________
10thnx inbox
_____________________________
Answer:
name = input('what is your name? -')
welcome = input('welcome',name)
Explanation: