Skip to content
/ LIE Public
forked from student-mv-01/LIE

A python function that print the largest int in a list

License

Notifications You must be signed in to change notification settings

AmosNimos/LIE

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 

Repository files navigation

LIE

Largest Integer Extractor Or List Item Extractor Both is good

A program that print the largest int in a list In a dict it only look at the keys. It ignores non integers value and convert floats to integers.

Example of list type that requires quotes when passed as arguments:

python lie.py "{1:2,2:a,3:b}"

OR

python lie.py "(1,a,3)"

Output: 3


Example of list type that don't requires quotes when passed as arguments:

python lie.py [1,2,5,6,3,5,a,5]

OR

python lie.py 1,2,5,6,3,5,a,5

OR

python lie.py 1 2 5 6 3 5 a 5

Output: 6

About

A python function that print the largest int in a list

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%