Python Forum
Confused by {} in Python code
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Confused by {} in Python code
#7
(Dec-03-2017, 04:06 PM)j.crater Wrote: It is a way to format strings in Python. Similar to using % notation in Python 2, C language etc. So in your case {}  gets substituted with value of M, which is calculated with the formula you provided.

Here you can find documentation on it and a few simple examples:
https://docs.python.org/3.4/library/stri...t-examples

Thanks very much!

That was exactly what I needed.

Sorry, I should have RTFM first. :)

- O

(Dec-03-2017, 04:11 PM)snippsat Wrote: It's called string formatting.
The evolution of string formatting.
>>> M = 100
>>> # old don't use
>>> print('M = %d' % M)
M = 100
>>> 
>>> # Python 2.6 we get format()
>>> print('M = {}'.format(M))
M = 100
>>> 
>>> # Python 3.6 we get f-string
>>> print(f'M = {M}')
M = 100
f-string is the future,but format() will be used for a long time.
f-string can take expressions here calculate and upper():
>>> a = 10
>>> b = 20
>>> s = 'correct'
>>> print(f'The sum of a {a} and b {b} is {a+b} {s.upper()}')
The sum of a 10 and b 20 is 30 CORRECT
More about format() PyForamt.


Excellent! I've copied these for reference.

- O
Reply


Messages In This Thread
Confused by {} in Python code - by Oliver - Dec-03-2017, 03:21 PM
RE: Confused by {} in Python code - by Larz60+ - Dec-03-2017, 04:03 PM
RE: Confused by {} in Python code - by j.crater - Dec-03-2017, 04:06 PM
RE: Confused by {} in Python code - by Oliver - Dec-03-2017, 05:15 PM
RE: Confused by {} in Python code - by sparkz_alot - Dec-03-2017, 04:09 PM
RE: Confused by {} in Python code - by snippsat - Dec-03-2017, 04:11 PM
RE: Confused by {} in Python code - by j.crater - Dec-03-2017, 04:14 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  C++ programmer confused about why Python isn't working the way I intend Radical 2 729 Sep-15-2023, 04:21 AM
Last Post: Radical
  String int confused janeik 7 1,085 Aug-02-2023, 01:26 AM
Last Post: deanhystad
  I am confused with the key and value thing james1019 3 976 Feb-22-2023, 10:43 PM
Last Post: deanhystad
  Confused about python execution jpezz 4 1,390 Oct-09-2022, 06:56 PM
Last Post: Gribouillis
  Pandas confused DPaul 6 2,581 Sep-19-2021, 06:45 AM
Last Post: DPaul
  is and '==' i'm confused hshivaraj 6 2,728 Sep-15-2021, 09:45 AM
Last Post: snippsat
  Confused with 'flags' tester_V 10 4,941 Apr-12-2021, 03:03 AM
Last Post: tester_V
  Simple Tic Tac Toe but I'm confused Izith 1 2,205 Sep-26-2020, 04:42 PM
Last Post: Larz60+
  I am really confused with this error. Runar 3 3,039 Sep-14-2020, 09:27 AM
Last Post: buran
  Confused on how to go about writing this or doing this... pythonforumuser 3 2,502 Feb-10-2020, 09:15 AM
Last Post: snippsat

Forum Jump:

User Panel Messages

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