Introduction to Python

  • Profound Academy

    • Status
      • 1
        Input and Output
      • 2
        Variables and Integer Arithmetic
      • 3
        Conditional Operators
      • 4
        Advanced Conditions - Nesting
      • 5
        Types and Variables
      • 6
        Strings
      • 7
        Lists
      • 8
        For Loops
      • 9
        While Loops
      • 10
        continue, break, while...else, for...else
      • 11
        String and List methods
      • 12
        Nested Loops
      • 13
        List Comprehension
      • 14
        Tuples and Sets
      • 15
        dict
      • 16
        Functions
      • 17
        Functions 2
      • 18
        Lambda and higher-order functions
      • 19
        Files

  • Variable sep

    You are asked to print all 12 months of the year separated by the specified value in the input.
    The input contains a single line representing the value that needs to be used to separate the months. The program should print all the months separated by that value.
    Here is the list of all months: January, February, March, April, May, June, July, August, September, October, November, and December.
    Input
    Output
    ,
    January,February,March,April,May,June,July,August,September,October,November,December
    ==
    January==February==March==April==May==June==July==August==September==October==November==December
     

    Constraints

    Time limit: 1 seconds

    Memory limit: 512 MB

    Output limit: 1 MB

    To check your solution you need to sign in
    Sign in to continue