Computer Science, asked by charumathur1313, 3 months ago

write the python statement that would print out "abc","def",and. "ghi" with exactly two space in between any two string​

Answers

Answered by nutan2409
0

Explanation:

Much of what we do today with computers revolves around text:

Web pages

Facebook

Text message

These require working with strings.

Strings are our third type, after integers and floats.

We’ve already seen the use strings in output,

print "Hello world"

x = 8

y = 10

print "Value of x is", x, "value of y is

Similar questions