Codes: Difference between revisions

From XPUB & Lens-Based wiki
(Created page with ""hello {}".format(name) f"hello {name}" print ("hello python") n = "your name" "Hello" + x <b>loops</b> for x in range(10): print ("hello python") print (x) x = 1...")
 
No edit summary
 
(2 intermediate revisions by the same user not shown)
Line 16: Line 16:
     print (f"x is {x}")
     print (f"x is {x}")
     x = x + 1
     x = x + 1
<div style="background-color:#4E5EC5; padding: 3px; text-decoration:none;"></div><br>

Latest revision as of 17:30, 15 October 2020

"hello {}".format(name) f"hello {name}" print ("hello python")

n = "your name" "Hello" + x

loops

for x in range(10):

   print ("hello python")
   print (x)

x = 1 while x<10:

   print (f"x is {x}")
   x = x + 1