- 2
Type hi 42 times
print("Hi" *42) I don't know what I'm doing wrong, can someone help?
9 Answers
+ 3
H should be lowercase in "hi"
+ 3
print("hi"*42)
+ 1
Change this
Print("hi" * 42)
+ 1
Q. Youâre given a task to write the word "hi" 42 times. Boring, right?
Write a program to do it for you.
Create a program to output "hi" 42 times, without any separators, on the same line.
ANSWER.
#your code goes here
print("hi" * 42)
for more doubt contact here on telegram
https://youtu.be/tOWQqOWieE4
by janveer singh
0
for i in range(42):
print("Hi")
You mean like this?
0
Wow, it was the h.... -_-
0
print(("hi")*(42))
0
print(("hi")*(42))
0
print(("hi")*(42))