escape sequence Get link Facebook X Pinterest Email Other Apps September 28, 2021 st = "Tai\ttai\ttai\nMa\\ma\tbari\tjai"#-->\t-adds extra tab space \n->adds new lineprint(st) #-->\\->adds backslash Get link Facebook X Pinterest Email Other Apps Comments SSEO Expert4 July 2026 at 01:55This comment has been removed by the author.ReplyDeleteRepliesReplyAdd commentLoad more... Post a Comment
Average September 27, 2021 Average Of Two Numbers (PYTHON) print ( "enter a and b" ) #a,b=input().split() a = input () b = input () a = int ( a ) b = int ( b ) remi = ( a + b )/ 2 print ( remi ) Read more
LetterEscapeSequence September 28, 2021 #letter="Dear Harry,this Python course is nice.Thanks!" letter = "Dear Harry, \n this Python course is nice. \t Thanks!" print ( letter ) Read more
FindDoubleSpaces September 28, 2021 st = "this is a string with double spaces" doublespaces = st . find ( " " ) print ( doublespaces ) Read more
This comment has been removed by the author.
ReplyDelete