Skip to content

Latest commit

 

History

History
9 lines (7 loc) · 256 Bytes

README.md

File metadata and controls

9 lines (7 loc) · 256 Bytes

PythonProgramming

Lists

  • Print list without loop: * symbol is used | also called splat operator]
    Syntax = print(*my_list, sep = "\n") | default sep = ' ']
    Program: LuckyFour.py

  • List comprehension
    Program: NonNegativeProd.py