摘要:
>>> a = 8 >>> type(a) <class 'int'> ## 整数 >>> b = "xxx" >>> type(b) <class 'str'> ## 字符串 >>> c = True >>> type(c) <class 'bool'> ## 布尔型 >>> d = ["aaa" 阅读全文
posted @ 2020-12-17 17:53
小鲨鱼2018
阅读(257)
评论(0)
推荐(0)
摘要:
1、报错信息 2、安装libffi-devel [root@linuxprobe Python-3.9.1]# yum install libffi-devel Updating Subscription Management repositories. Unable to read consume 阅读全文
posted @ 2020-12-17 13:24
小鲨鱼2018
阅读(9150)
评论(2)
推荐(1)
摘要:
实验环境接“ linux系统中部署apache服务(个人用户主页功能)”。 1、在PC1服务器端为用户usertest1创建密码库 [root@PC1 ~]# htpasswd -c /etc/httpd/passwd usertest1 ## 这个usertest1不必是系统已经存在的账户,只是用 阅读全文
posted @ 2020-12-17 00:58
小鲨鱼2018
阅读(574)
评论(0)
推荐(0)