answersLogoWhite

0


Best Answer

It means that python will print(or write out) a value you input.

User Avatar

Wiki User

6y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

9y ago

for handbags and shoes etc

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the purpose of print strings in python?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Where can one purchase Python strings?

There are many places where one would be able to purchase Python strings online. One would be able to purchase Python strings from online shopping websites such as Amazon or eBay.


How do you subtract strings in python?

you dont


What is used in python programming for space in output?

I interpreted your question as this: What is used in Python for adding a blank line to the output? If you are looking for this, a simple print statement will do: print #in python 2.x or print() #in python 3.x If that wasn't what you were looking for, change the question to be more clear.


What is the meaning of print python programming?

In Python; the "print" feature will simply output something (defined by you) onto the screen. For example: print("Hello") would output "Hello" to the screen!


What does the print command do in Python?

The print command is a way to display output to the console. The hello world program, for example, can be written in python as simply print("Hello world") Other values can also be used in a print statement: a = 4 print(a) #will print the number 4


How do you modify strings so that they are accepted as variable names when programming in Python?

You can use the exec statement in Python to create variables from strings. For example, exec("a = 100") creates a variable named a with a value of 100.


How can print Telugu words in python language?

To print Telugu words in Python, you can simply use the Unicode representation of the Telugu characters. Here is an example: print("తెలుగు") This will output the Telugu word "తెలుగు" in the console.


How do you print hello world in python?

by opening his mouth!


What is the difference between strings and lists in Python?

They have different methods, and they display differently when printed.


What happened to the append function in python?

It's still there... Type the following into a python prompt... x = [7,4,3] x.append(5) print(x) and you get the result... [7,4,3,5] It's definitely working in python 3


What is the meaning of print and input in idle python?

"print" will output a value onto the screen for a user to see. "input" or "raw_input" gets a user's input.


How do you print strings and numbers in single statement by using C language?

With printf.Example:for (i=0; i