Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
0 Endorsements
Ranked #107.55K
~153.60K People Reached
Favorite Forums
Favorite Tags

1 Posted Topic

Member Avatar for shak187

I need to transfer java code to phyton. import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = Integer.parseInt(sc.nextLine()); int[] hours = new int[n]; if (n <= 31) { inputHours(hours,n,sc); workedHours(hours,n); } } private static void workedHours(int[] hours, int n) …

Member Avatar for eliasarximan
2
154K

The End.