摘要:
>>> 3 > 5 False >>> 3 >= 5 False >>> 3 < 5 True >>> 3 == 5 False >>> 3 != 5 True >>> 3 <= 5 True 阅读全文
摘要:
>>> a = 5 >>> a 5 >>> type(a) <class 'int'> >>> b = float(a) >>> b 5.0 >>> type(b) <class 'float'> >>> c = 5.3 >>> c 5.3 >>> type(c) <class 'float'> > 阅读全文
摘要:
>>> a = "line1\nline2\nline3\nline4\n……" >>> print(a) line1 line2 line3 line4 …… >>> a = """line1 ## 使用"""xxxx""" 可以省略\n. line2 line3 line4 …… """ >>> 阅读全文
摘要:
>>> a = "ab\ncde" >>> print(a) ab cde >>> b = "ab\\ncde" >>> print(b) ab\ncde >>> c = r"ab\ncd3" >>> print(c) ab\ncd3 阅读全文
摘要:
>>> int(3) 3 >>> int(3.1) 3 >>> int(3.5) 3 >>> int(3.7) 3 >>> int(3.9) 3 阅读全文
摘要:
>>> 5 % 0 Traceback (most recent call last): File "<pyshell#354>", line 1, in <module> 5 % 0 ZeroDivisionError: integer division or modulo by zero >>> 阅读全文
摘要:
>>> 3 / 2 ## 普通除法,保留浮点 1.5 >>> 3 // 2 ## 地板除法,省略小数点 1 阅读全文
摘要:
>>> a = 8 >>> type(a) <class 'int'> ## 整数 >>> b = "xxx" >>> type(b) <class 'str'> ## 字符串 >>> c = True >>> type(c) <class 'bool'> ## 布尔型 >>> d = ["aaa" 阅读全文
摘要:
1、报错信息 2、安装libffi-devel [root@linuxprobe Python-3.9.1]# yum install libffi-devel Updating Subscription Management repositories. Unable to read consume 阅读全文
摘要:
实验环境接“ linux系统中部署apache服务(个人用户主页功能)”。 1、在PC1服务器端为用户usertest1创建密码库 [root@PC1 ~]# htpasswd -c /etc/httpd/passwd usertest1 ## 这个usertest1不必是系统已经存在的账户,只是用 阅读全文