Sign in to test your solution.
# Tweet program # ------------------------- # Subprograms # ------------------------- def tweets(message, num_chars): # ------------------------- # Main program # ------------------------- message = input("Enter the message: ") max_chars = int(input("How many characters per message? :")) print(tweets(message, max_chars))

  Python sandbox

This window allows you to run Python code without installing a thing. The code you write here is not automatically submitted to Dodona.

Test case being debugged