diff --git a/src/00_hello.py b/src/00_hello.py index 268998dfc7..a09979c682 100644 --- a/src/00_hello.py +++ b/src/00_hello.py @@ -1 +1,8 @@ -# Print "Hello, world!" to your terminal \ No newline at end of file +# Print "Hello, world!" to your terminal + +# more ways to a statement in python +a="world" +print(f"hello {a}") #first way +print("hello",a) #second way +print("hello "+format(a)) # Third way +print("hello world") #normal way