Python: Define a string containing special characters in various forms
Python Basic: Exercise-92 with Solution
Write a Python program to define a string containing special characters in various forms.
Sample Solution :-
Python Code :
print()
print("\#{'}${\"}@/")
print("\#{'}${"'"'"}@/")
print(r"""\#{'}${"}@/""")
print('\#{\'}${"}@/')
print('\#{'"'"'}${"}@/')
print(r'''\#{'}${"}@/''')
print()
Sample Output:
\#{'}${"}@/ \#{'}${"}@/ \#{'}${"}@/ \#{'}${"}@/ \#{'}${"}@/ \#{'}${"}@/
Flowchart:

Visualize Python code execution:
The following tool visualize what the computer is doing step-by-step as it executes the said program:
Python Code Editor:
Have another way to solve this solution? Contribute your code (and comments) through Disqus.
Previous: Write a Python program to swap two variables.
Next: Write a Python program to get the identity of an object.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.
Python: Tips of the Day
Curries a function:
Example:
from functools import partial def tips_curry(fn, *args): return partial(fn,*args) add = lambda x, y: x + y add1 = tips_curry(add, 20) print(add1(80))
Output:
100
- New Content published on w3resource:
- HTML-CSS Practical: Exercises, Practice, Solution
- Java Regular Expression: Exercises, Practice, Solution
- Scala Programming Exercises, Practice, Solution
- Python Itertools exercises
- Python Numpy exercises
- Python GeoPy Package exercises
- Python Pandas exercises
- Python nltk exercises
- Python BeautifulSoup exercises
- Form Template
- Composer - PHP Package Manager
- PHPUnit - PHP Testing
- Laravel - PHP Framework
- Angular - JavaScript Framework
- Vue - JavaScript Framework
- Jest - JavaScript Testing Framework