JAVA SCRIPT NA ENNADA NO :4 CODE Get link Facebook X Pinterest Email Other Apps July 30, 2021 <!DOCTYPE html><html lang="en"><head> <title>video no 4</title></head><body> <script> var k = 77; K = "KKNETWORKS"; alert(k); alert(K); </script></body></html> Get link Facebook X Pinterest Email Other Apps Comments
Python while loop error and correction July 15, 2022 wrong program correct program wrong program BY Shifan Read more
Python Na Ennada Video No:20 Source Code ( How to Write a txt File Using Python September 26, 2021 from sys import argv script, filename = argv print ( f 'we are going to erase ok { filename } ' ) input ( "?" ) print ( "opening the file ...." ) target = open (filename, 'w' ) print ( "Truncating the file. goodbye!" ) target.truncate() print ( 'now i am going to ask you you for three lines' ) line1 = input ( "line 1: " ) line2 = input ( "line 2: " ) line3 = input ( "line 3: " ) print ( "i am going to write these to the file ." ) target.write(line1) target.write( " \n " ) target.write(line2) target.write( " \n " ) target.write(line3) target.write( " \n " ) print ( " and finally , we close it." ) target.close() Read more
PYTHON NA ENNADA VIDEO NO 18 SOURCE CODE August 20, 2021 from sys import argv script,username = argv promt = '>' print ( f 'Hi { username } , i am the { script } script' ) print ( 'ongakita some questions kekanum' ) print ( f 'ongalukku kk network theriyuma { username } ' ) theriyuma = input (promt) print ( f 'kk networks la python playlist video laam paathuteengaa { username } ' ) paathuteengala = input (promt) print ( f 'paakala na seekiram paathurunga illana adutha video puriyaathu { username } ' ) print ( f 'so ongalukku kk network ah' ,theriyuma, 'neenga playlist laam' ,paathuteengala) Read more
Comments
Post a Comment