Home 04. Escape Sequence
Post
Cancel

04. Escape Sequence

Escape Sequences:

  • \\ –> To print Backslash \
  • \" –> Double Quote “
  • \' –> Single Quote ‘
  • \n –> New Line
  • \t –> Tab
  • \r –> Carriage Return
  • \b –> Backspace
  • \f –> From Feed
1
print("hi\\This\"is\'machine\nlearning\tusing\bpython\fin\nenglish\rhindi")

More Escape Sequence in Python

This post is licensed under CC BY 4.0 by the author.

03. Print Function in Python

05. Variables