Contact: aviboots(AT)netvision.net.il
39,966 questions
51,908 answers
573 users
import string print(string.punctuation) ''' run: !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~ '''
import string for ch in string.punctuation: print(ch) ''' run: ! " # $ % & ' ( ) * + , - . / : ; < = > ? @ [ \ ] ^ _ ` { | } ~ '''
import string print(string.punctuation[0]) print(string.punctuation[1]) print(string.punctuation[2]) ''' run: ! " # '''