write coding please be a human and help me
Attachments:
Answers
Answered by
1
1.
( Input )
a_string = " Information Technology"
for line in range(7):
result = a_string * 2
print(result)
( Output)
Information Technology
Information Technology
Information Technology
Information Technology
Information Technology
Information Technology
Information Technology
2.
( Input )
num = int( input ("Enter your age = "))
if num <=18
print ( "You are eligible to vote" )
else:
print ( "You are not eligible to vote" )
(Output )
Enter your age = 15
You are not eligible to vote.
Hope it helps
Similar questions