Skip to content

Latest commit

 

History

History
9 lines (8 loc) · 228 Bytes

File metadata and controls

9 lines (8 loc) · 228 Bytes

My small codes from the beginning of my learning python

8th July 2022

#Code to output the same number that is fed 
n = int(input());
print(n);
  • input() allows the user of the program input value as they desire.