Please Change this JavaScript code for python code or C++ ,C | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 102

Please Change this JavaScript code for python code or C++ ,C

https://code.sololearn.com/Wh8zJSIWuy5V/?ref=app

6th Feb 2021, 5:03 PM
Melekte Petros
Melekte Petros - avatar
13 Answers
+ 20
// Don't know if this is what you want, but this types each letter one by one similar to your code, though the time delays/effect won't work on SoloLearn. (try to a different editor). _______________________ import time dis="thanks 100 follower and 30 like for my code i love you guys and please d't forget follow me and like my code" for i in dis: print(i, end="") time.sleep(0.05) _______________________
6th Feb 2021, 5:12 PM
noteve
noteve - avatar
+ 26
Thanks
6th Feb 2021, 6:34 PM
Melekte Petros
Melekte Petros - avatar
+ 23
or Java
6th Feb 2021, 5:08 PM
Melekte Petros
Melekte Petros - avatar
+ 23
// Don't know if this is what you want, but this types each letter one by one similar to your code, though the time delays/effect won't work on SoloLearn. (try to a different editor). _______________________ import time dis="thanks 100 follower and 30 like for my code i love you guys and please d't forget follow me and like my code" for i in dis: print(i, end="") time.sleep(0.05) _______________________ Cyan This code d't work
6th Feb 2021, 7:13 PM
Melekte Petros
Melekte Petros - avatar
+ 22
I can't do in myself
6th Feb 2021, 5:26 PM
Melekte Petros
Melekte Petros - avatar
+ 11
Tnx guys
3rd Mar 2021, 9:42 PM
Melekte Petros
Melekte Petros - avatar
+ 9
Cyan gave a good example but you will also have to add "flush=true" as argument to print statement, to force the buffer to flush immediately whatever it stores ,otherwise it will only print the final statement after summation of delays. Do it like , print(i, end="", flush=true)
6th Feb 2021, 5:21 PM
Abhay
Abhay - avatar
+ 5
Hey ,hello wolrd must good ,melu 👏👏👏
3rd Mar 2021, 5:40 PM
Alair José
Alair José - avatar
+ 3
Melu why not learn about gui in c++ and python and do it yourself .
6th Feb 2021, 5:13 PM
Abhay
Abhay - avatar
+ 2
guy I suggest you to add this in the if statement this: document.getElementById('cursor').innerHTML = ''; this makes the cursor disappear when the interval finishes
8th Feb 2021, 4:30 PM
Gabriele Giambrone
Gabriele Giambrone - avatar
+ 2
Melu Yes unfortunately, it wont work here in code playground. Try it to a different Code Editor. I just tried to imitate what you've done in your code✌️
8th Feb 2021, 4:57 PM
noteve
noteve - avatar
0
So you want to make the animation with py? from time import sleep dis="thanks 100 follower and 30 like for my code i love you guys and please d't forget follow me and like my code" dis = dis.replace(" ", "_") dis = dis.replace("", " ").split(" ") for i in range(len(dis)): if dis[i] == "_": dis[i] = " " for i in dis: print(i, end = "") # or print(i, end="", flush = True) sleep(0.05) Probably, it'll work; sorry it can't print your last |||
7th Mar 2021, 7:20 AM
Md. Faheem Hossain
Md. Faheem Hossain - avatar
0
hi
15th Mar 2021, 4:56 PM
Raj Kumar
Raj Kumar - avatar