Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions HariprasadReddysir.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<p>
hello hariprasadreddy sir !
</p>
</body>
</html>
4 changes: 3 additions & 1 deletion add.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
a=8
b=4
d=7
d=9
c=a+b=d
print c


13 changes: 13 additions & 0 deletions countdowntimer.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import time

def countdown(time_sec):
while time_sec:
mins, secs = divmod(time_sec, 60)
timeformat = '{:02d}:{:02d}'.format(mins, secs)
print(timeformat, end='\r')
time.sleep(1)
time_sec -= 1

print("stops")

countdown(5)