编程语言
首页 > 编程语言> > python语言程序设计(MOOC 嵩天)第九章 程序整理(0314)

python语言程序设计(MOOC 嵩天)第九章 程序整理(0314)

作者:互联网

测验1 系统基本信息获取

获取系统的递归深度、当前执行文件路径、系统最大UNICODE编码值等3个信息,并打印输出。

import sys
print("RECLIMIT:{}, EXEPATH:{}, UNICODE:{}".format(sys.getrecursionlimit(), sys.executable, sys.maxunicode))

测验2 二维数据表格输出

from tabulate import tabulate
data = [ ["北京理工大学", "985", 2000], \
         ["清华大学", "985", 3000], \
         ["大连理工大学", "985", 4000], \
         ["深圳大学", "211", 2000], \
         ["沈阳大学", "省本", 2000], \
    ]
print(tabulate(data, tablefmt="grid"))

标签:sys,MOOC,python,985,嵩天,2000,UNICODE,print,tabulate
来源: https://blog.csdn.net/yq1271/article/details/104873673