Computer Science, asked by k3ha2011, 11 months ago

When a cell doesn’t have enough room to display its contents a line of what symbol is displayed instead? Drag correct word or phrase to answer box below
*
-
=
#
@

Answers

Answered by ıtʑFᴇᴇʟɓᴇãᴛ
2

Every character you put into a raw string stays in the way you wrote it :

# !/usr/bin/python

print ‘C:\\nowhere’

When the above code is executed, it produces the following result :

C:\nowhere

Now let’s make use of raw string. We would put expression in r’expression’ as follows :

# !/usr/bin/python

print r’C:\\nowhere’

When the above code is executed, it produces the following result :

C:\\nowhere

Similar questions