diff options
Diffstat (limited to 'progs/a547.py')
-rw-r--r-- | progs/a547.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/progs/a547.py b/progs/a547.py new file mode 100644 index 0000000..e22fcb5 --- /dev/null +++ b/progs/a547.py @@ -0,0 +1,3 @@ +def greater_specificnum(list,num):
+ greater_specificnum=all(x >= num for x in list)
+ return greater_specificnum
\ No newline at end of file |