Python Forum
List / arrays putting in sentence
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
List / arrays putting in sentence
#1
I’m trying to pull from a index and a variable and use in a sentence what’s am I doing wrong

bicycles = ['trek','cannondale','shwin','specialized','redline','bmx']
name = "kurt"
message = f(name)" (first bike was a {bicycles[3]})"
print (message)
Thanks for suggestions

Kurta
Larz60+ write Dec-24-2020, 02:28 AM:
Please post all code, output and errors (it it's entirety) between their respective tags. Refer to BBCode help topic on how to post. Use the "Preview Post" button to make sure the code is presented as you expect before hitting the "Post Reply/Thread" button.

Fixed for you this time. Please use code tags on future posts
Reply
#2
f-string should be message = f"{name} (first bike was a {bicycles[3]})"
Reply
#3
(Dec-24-2020, 02:28 AM)Larz60+ Wrote: f-string should be message = f"{name} (first bike was a {bicycles[3]})"

That did fixed it



I removed the round brackets i thought i needed them.

I've programmed in Labview for about 15 years.
Thought it would be good to learn python.

i need to get the basic syntax down..

Thanks for the help.
Reply
#4
Here are two very good tutorials (both free):

How to Think Like a Computer Scientist: Interactive Edition
European python 3 course
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  while sentence kimyyya 3 2,942 Mar-20-2021, 06:00 AM
Last Post: Pedroski55
  How to make a telegram bot respond to the specific word in a sentence? Metodolog 2 6,341 Dec-22-2020, 07:30 AM
Last Post: martabassof
  How to match partial sentence in long sentence Mekala 1 1,522 Jul-22-2020, 02:21 PM
Last Post: perfringo
  Putting a condition Jiwan 3 2,719 Apr-25-2020, 11:28 AM
Last Post: anbu23
  Grabbing comma separed values from SQLite and putting them in a list PythonNPC 8 4,001 Apr-10-2020, 02:39 PM
Last Post: buran
  Remove a sentence if it contains a word. lokhtar 6 5,894 Feb-11-2020, 04:43 PM
Last Post: stullis
  Putting frames on separate lines kenwatts275 3 2,419 Dec-16-2019, 04:52 PM
Last Post: kenwatts275
  Regex Help for clubbing similar sentence segments regstuff 3 2,152 Nov-20-2019, 06:46 AM
Last Post: perfringo
  reading txt file putting in list function Expel 7 3,747 Jul-17-2019, 03:18 PM
Last Post: Expel
  how to get all the possible permutation and combination of a sentence in python sodmzs 1 4,156 Jun-13-2019, 07:02 AM
Last Post: perfringo

Forum Jump:

User Panel Messages

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