码迷,mamicode.com
首页 > 编程语言 > 详细

python 显示!到~的字符

时间:2019-05-03 14:41:04      阅读:117      评论:0      收藏:0      [点我收藏+]

标签:style   lse   col   输出   color   int   print   range   python   

 

count = 1
for i in range(ord("!"), ord("~")+1):
    if count % 10 != 0:
        print(chr(i),end=" ")
    else:
        print(chr(i))
    count += 1

输出

! " # $ % & ‘ ( ) *
+ , - . / 0 1 2 3 4
5 6 7 8 9 : ; < = >
? @ A B C D E F G H
I J K L M N O P Q R
S T U V W X Y Z [ ] ^ _ ` a b c d e f
g h i j k l m n o p
q r s t u v w x y z
{ | } ~

 

python 显示!到~的字符

标签:style   lse   col   输出   color   int   print   range   python   

原文地址:https://www.cnblogs.com/sea-stream/p/10804872.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!