Python Forum
How to format characters that are given by user input with user input
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
How to format characters that are given by user input with user input
#1
I am writing a program (in Python 3.7.2) that is supposed to print out a flag with the width of the flag being user input and the characters used in the flag also being user input. I am having difficulty in formatting the characters according to user input. This is what I have so far:
Greeting = “Hi, I’m flaggy the flagmaker. Let’s make a flag!”
print (Greeting)
width = (int (input (“What’s the width of your flag?”)))
if width > 0:
     print (width)
elif width < 1:
     print (input( “What’s the width of your flag?\n>”))
characters = input (“What characters would you like to use?\n>”)
if characters == :
     print (input (“What characters would you like to use\n>?”))
print (format (characters3))
str = [’>width’]
print [str. format [“characters”]]
print [str. format [“characters”]]
print (format (characters3))
*my issues are in the third to last and second to last lines where I know the format is incorrect but I’m not sure how to correct it.
Reply
#2
Check out the documentation format method of strings, and the full format method syntax here. Also, note that code with smart quotes won't run correctly. That means we can't run your code. That means it's harder for us to help you.
Craig "Ichabod" O'Brien - xenomind.com
I wish you happiness.
Recommended Tutorials: BBCode, functions, classes, text adventures
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  interactive process for input and output maiya 1 433 Mar-27-2025, 08:40 AM
Last Post: Gribouillis
  Βad Input on line 12 Azdaghost 4 897 Mar-25-2025, 02:40 PM
Last Post: deanhystad
  Warn user of validation error before they click submit robertkwild 1 854 Mar-12-2025, 03:49 AM
Last Post: Tishat73
  How to revert back to a previous line from user input Sharkenn64u 2 785 Dec-28-2024, 08:02 AM
Last Post: Pedroski55
  How to make it so whatever I input into a script gets outputted on a different file spermatozwario 4 1,084 Nov-24-2024, 12:58 PM
Last Post: deanhystad
Question [SOLVED] Same input different output antarling 2 835 Oct-25-2024, 11:28 PM
Last Post: antarling
  I think I need to delete input data because returning to start fails thelad 2 1,041 Sep-24-2024, 10:12 AM
Last Post: thelad
  Input function oldschool 1 668 Sep-14-2024, 01:02 PM
Last Post: deanhystad
  Handling receiving updates from user in Telebot mohsenamiri 0 1,226 Aug-26-2024, 09:25 AM
Last Post: mohsenamiri
  User input with while loops chizzy101010 2 4,587 Aug-25-2024, 06:00 PM
Last Post: chizzy101010

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020