python symbol characters list code example

Example 1: python strip characters

# Python3 program to demonstrate the use of 
# strip() method   
  
string = " python strip method test " 
  
# prints the string without stripping 
print(string)  
  
# prints the string by removing leading and trailing whitespaces 
print(string.strip())    
  
# prints the string by removing strip 
print(string.strip(' strip')) 
Output:
 python strip method test 
python strip method test
python method test

Example 2: print unicode character in golang

package main

import (
	"fmt"
)

func main() {

	for i := 33; i <= 126; i++ {
		//fmt.Printf("%d: %c  ", i, i) //Prints ONLY the unicode chars
		fmt.Printf("%d: %#U  ", i, i) //Prints the unicode chars and values as well
	}
}

Tags:

Go Example