Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Defining a Function
#2
example
def words_intext(text, wordlist):
	for word in wordlist:
		if word not in text:
			return False
	return True

value = 0
text = 'apple to banana of orange'
value += words_intext(text, ['apple','orange','banana'])
text = 'apple be a orange of banana'
value += words_intext(text, ['apple','orange','banana'])
text = 'apple vs orange'
value += words_intext(text, ['apple','orange','banana'])
print(value)
99 percent of computer problems exists between chair and keyboard.
Reply


Messages In This Thread
count booleans in an if - by mattt1998 - Dec-10-2017, 01:45 PM
RE: count booleans in an if - by Windspar - Dec-10-2017, 05:13 PM
Defining a Function - by mattt1998 - Dec-13-2017, 06:32 PM
RE: Defining a Function - by mpd - Dec-13-2017, 07:36 PM
RE: Defining a Function - by buran - Dec-14-2017, 07:02 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Conjugate Gradient having issues with defining A (function to solve [A]{x} = {b} ) DimosG 2 2,857 Sep-21-2021, 08:32 PM
Last Post: 1968Edwards
  Defining a function with input abcd 5 3,168 Feb-21-2021, 02:34 AM
Last Post: NullAdmin
  When Defining a Function with an Equation as a Default Argument, which Value Is Used? OJGeorge4 4 2,734 Apr-09-2020, 08:48 AM
Last Post: DeaD_EyE
  Problem with defining a function snow_y 4 3,237 Nov-26-2018, 02:13 AM
Last Post: snippsat
  IDLE indenting 29 columns after defining function Cosmo_Kane 1 2,443 Jun-03-2018, 08:53 AM
Last Post: Larz60+
  Defining an fsolve function to call later hegdep 1 3,103 Oct-25-2017, 07:38 AM
Last Post: hegdep
  init vs_init_ while defining method/function? hsunteik 1 3,676 Dec-24-2016, 08:27 AM
Last Post: micseydel

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020