标签: python-3.x
确保字符串不包含链接https://或http://或什至仅包含地址(www.google.com)且不包含带有内置http:// s。在库中
答案 0 :(得分:0)
足以编写一条if语句:
str1="https://www.google.com" keyword="https://" if keyword in str1: print("The chosen string contains a website link")