第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

如何檢查python函數(shù)是否使用while循環(huán)?

如何檢查python函數(shù)是否使用while循環(huán)?

慕田峪7331174 2023-07-11 10:49:13
def foo():    while <condition>:        do somethingdef bar():    for i in range(5):        do something假設(shè)我在一個(gè)文件名中定義了兩個(gè)函數(shù)test.py。python 有沒有辦法編寫具有以下行為的函數(shù)?import testdef uses_while(fn: Callable) -> bool:    (what goes here?)>>> uses_while(test.foo)True>>> uses_while(test.bar)False我本質(zhì)上需要以編程方式檢查函數(shù)是否使用 while 循環(huán),而不需要手動(dòng)檢查代碼。我想過使用 pdb.getsourcelines() ,但是如果里面有注釋或字符串中包含“while”一詞,那么這不起作用。有任何想法嗎?
查看完整描述

2 回答

?
慕的地8271018

TA貢獻(xiàn)1796條經(jīng)驗(yàn) 獲得超4個(gè)贊

import ast

import inspect

from typing import Callable


def uses_while(fn: Callable) -> bool:

    nodes = ast.walk(ast.parse(inspect.getsource(fn)))

    return any(isinstance(node, ast.While) for node in nodes)

在 Python 3.9+ 上,您必須將其更改為from collections.abc import Callable.


查看完整回答
反對(duì) 回復(fù) 2023-07-11
?
慕勒3428872

TA貢獻(xiàn)1848條經(jīng)驗(yàn) 獲得超6個(gè)贊

我編寫了一個(gè)簡(jiǎn)單的函數(shù),可以檢查作為參數(shù)給出的函數(shù)是否包含 while 循環(huán):


import inspect


def test_while(func):

  flag = False


  body = inspect.getsourcelines(func)

  string = ''.join(body[0]).replace(' ', '')

  splited = string.split('\n')

  

  for chain in splited:

    if len(chain) > 0 and chain[0] is not '#':

      if chain.startswith('while'):

        flag = True


  return flag


查看完整回答
反對(duì) 回復(fù) 2023-07-11
  • 2 回答
  • 0 關(guān)注
  • 170 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)