61.4k views
21 votes
Write an input command using the variable company_name.

User Qcom
by
3.9k points

1 Answer

11 votes

Answer:

company_name = input("What if your company name?");

print("I hope " + company_name + "becomes successful!");

Step-by-step explanation:

The input of the user becomes a variable which is then stored in order to print it out as a message.

User Gejun
by
3.9k points