#!/usr/bin/env python3 # -*- coding: utf-8 -*- s = 'hello world' found ... found = s.find('x') print(found) found = s.find('xx') print(found) ...
確定! 回上一頁