python 3.6 F-String code example
Example 1: f string python
# f-string is a format for printing / returning data
# It helps you to create more consise and elegant code
########### Example program ##############
# User inputs their name (e.g. Michael Reeves)
name = input()
# Program welcomes the user
print(f"Welcome to grepper {name}")
################ Output ################
""" E.g. Welcome to grepper Michael Reeves """
Example 2: f string python
num_01, num_02, num_03 = 1, 2, 3
print(f"Numbers : {num_01}, {num_02}, {num_03}")
"""
>>> Numbers: 1, 2, 3
"""